| Thread | Last Post | Replies |
|
| How to determine if currently in design mode | 13 Jun 2004 07:53 GMT | 3 |
The problem is that DesignMode property only returns True, if the control can be directly modified. If the control is on a user control, and that user control is on a form - the design mode property of the original control is now False.
|
| Obtaining the component being edited in UITypeEditor | 12 Jun 2004 18:51 GMT | 1 |
I have a property in a component that is a collection (array). The base type of the item in the array contains a type which has another array. I edit the the first array (default collection editor invoked from property grid) from which I can edit the "next level" array. I have a ...
|
| UserControls ToolBox Category? | 12 Jun 2004 08:54 GMT | 1 |
I have created a UserControl and would like to change the toolbox category that it appears under in Visual Studio? As in it currently appears in "My User Controls", how can I do this? Also does the ToolboxBitmap attribute work with UserControls, I have tried:
|
| How do I get the ControlDesigner for a control? | 11 Jun 2004 18:10 GMT | 5 |
Anyone tell me how to get the ControlDesigner for any control? I need to check the selection rules, and other things. A samle would be great, or a website... Thanks,
|
| preventing evaluation of a property until runtime | 11 Jun 2004 09:38 GMT | 3 |
I have developed a set of routines to compute certain statistics. Because some of these computations are rather involved, I have designed the relevant properties so that a statistic is computed the first time it is encountered, that value is saved, and the previously
|
| System.UInt32, DefaultValue CLS compliant problems | 11 Jun 2004 02:50 GMT | 6 |
I've written a component that has public properties of type System.UInt32. When the component is added to a project (component tray) the following is produced in the code (Form for which the component was dropped): // TODO: Code generation for 'this.bridgelCtrl1.TimeoutConstant' ...
|
| imagelist resources | 08 Jun 2004 11:49 GMT | 1 |
Why a derived form copy in its resx file all the icons from an ImageList component (visibility protected) placed in a base form? Is this the standard behaviour? I have an ImageList component and a toolbar in a base form and a lot of
|
| Is there a VS.NET addin that shows the hierarchy of a Form ? | 08 Jun 2004 09:00 GMT | 6 |
Hi, everyone, What I'm looking for is some addin that will show me this: Form1 + Panel1
|
| How to trigger key press event of a child from from Mdi Form | 07 Jun 2004 10:14 GMT | 1 |
How can we trigger key press event of a child from from Mdi Form Please Suggst. Thanks & REgards CV
|
| Designer bug on form inheritance | 05 Jun 2004 14:22 GMT | 4 |
I have a problem and I hope somebody help me ! We (a very big development team) are using VS Studio .NET 2003 on a very big vb.net project. I have this problem : Steps :
|
| Designer problem: with it I can add controls to control, with it I can't | 04 Jun 2004 11:55 GMT | 5 |
I have a control that I wrote that acts as a layout manager so when I drop controls onto it in the designer it will automatically move and resize them based on certain properties. This works fine. However, there are times that after I move some of the child controls around ...
|
| Assign Label to Textbox? | 02 Jun 2004 02:31 GMT | 1 |
can i assign a label to a textbox? I can do this for example in access on moving a label on a textbox. I try this now in visual studio.net (c#) but it is not possible and there also isn't any property.
|
| Close & restart an application | 01 Jun 2004 16:34 GMT | 1 |
I would like close & restart the same application automatically. How can I achieve this. Please suggest Thanks & Regards
|
| changing backcolor of tabcontrol | 01 Jun 2004 08:36 GMT | 2 |
I have to change the BackColor of a TabControl. therefore I have overriden the onPaint-Method of TabControl like this: Rectangle rectangle = new Rectangle(0, 0, this.Width, this.Height); SolidBrush brush = new SolidBrush(Color.YellowGreen);
|