| Thread | Last Post | Replies |
|
| Problem with IDE when overriding Text property | 18 Apr 2006 14:55 GMT | 2 |
I noticed when overriding the Text property of the System.Windows.Forms.UserControl that the Form.Designer file does not reflect changes made via the property browser. In other words, when you override the Text property and then try to change it's value at design-time,
|
| serialization in InitializeComponents | 12 Apr 2006 15:56 GMT | 1 |
My custom composite control for the .NET Compact Framework will not serialize the DesignTime DefaultValues I assign to properties. For instance, VS serializes '0' for ints and it serializes the first value for any enumeration types.
|
| BackgroundWorker with a DataAccess Layer | 07 Apr 2006 21:51 GMT | 11 |
I'm stumped with a design problem and hoping someone has an elegant solution. I have a DataAccess Layer which contains all my database access functionality. I would like to run all the processing requests that come into the DataAccess Layer on a thread that is NOT the UI thread ...
|
| Upgrade VS2003 to VS2005 so Winform is split into separate .Designer.cs file (partial class) | 07 Apr 2006 14:15 GMT | 1 |
I got a few heavy forms with a lot of controls. What is the easiest/fastest way to convert these to "partial class" type (Separate Designer.cs file) ? TIA Best wishes
|
| VS2003 design-directive changed in VS2005? | 05 Apr 2006 19:26 GMT | 9 |
In VS2003 I could use the directive/flag DESIGN in my (C++) code to change the desinger-behaviour. My code looks like this: #ifdef DESIGN ... (c++ code during design-time)
|
| Control custom property | 04 Apr 2006 16:44 GMT | 2 |
I'm creating my own DataGridViewColumn class, and have added a string property to it which should be settable via the Property designer. I've gotten the property to show up, but even if i set a value, the code generated sets the property to null, not the value I typed.
|
| Retrieving project location at designtime | 03 Apr 2006 09:30 GMT | 2 |
I am currently designing an extender which needs to save a file in the project location. Any ideas on how I retrieve the project location at designtime from a component?
|
| Custom localization using an ExtenderProvider - some hurdles | 03 Apr 2006 09:22 GMT | 2 |
I have decided upon my own localization scheme for my .NET 2.0 applications. The main reason for this, is that I do not want to use satellite assemblies. There are several reasons for this, which I don't want to go into now.
|
| Suggestions For Touch Screen Form Sizes [C#] | 02 Apr 2006 15:57 GMT | 1 |
I'm looking for suggestions for touch screen form sizes. I'm trying to build a hospitality touch screen application w/ Window forms. However I am getting a bit flustered with choosing what size of the form I should have (base my application on). I have been measuring various ...
|
| Strings for DataGridViewComboBoxColumn from resource file | 01 Apr 2006 16:30 GMT | 1 |
if I add a ComboBox to a form via the designer and insert the text for items, then these strings are fetched from the resource file: // designer generated code myComboBox.Items.AddRange(new object[]{
|