| Thread | Last Post | Replies |
|
| What Events Can Be Captured at Design-Time? | 06 Aug 2006 00:36 GMT | 2 |
I want to capture certain events of a textbox control at design time but I'm having a difficult time finding any events that fire consistently during a design-time session. Is there such a list of events somewhere I could reference?
|
| How to use System.Windows.Forms.Control.AutoScrollOffset | 04 Aug 2006 19:49 GMT | 4 |
I have a user control (inherited from System.Windows.Forms.UserControl) which shows some kind of interactive graphic to the user. The user control is placed in a System.Windows.Forms.Panel with AutoScroll set to True. If my user control is larger than the container panel the panel ...
|
| RichTextBox PreferredSize property is incorrect | 04 Aug 2006 10:37 GMT | 3 |
It seems that the PreferredSize property is only calculated using the Control.Font property value which doesn't make sense for a RichTextBox because it can have several fonts. I want to resize the height of the RichTextBox so that it shows no
|
| CheckedListBox has no DataSource? | 03 Aug 2006 16:59 GMT | 2 |
I know by now I should have expected this half baked implementation by M$, but this is just getting silly now! Direct quote from M$ documentation: "The Windows Forms CheckedListBox control extends the ListBox control. It does almost everything that a list
|
| programmatically supply userid password to the fields and click on the ok button? | 03 Aug 2006 16:30 GMT | 1 |
I am developing a application which has to simulate web browser navigation through proxies which need authentication by userid and password. As proxies are challenging my webbrowser control for userid and password it is putting up the IntenetErrotDlg to accept userid and
|
| ListView Editting | 03 Aug 2006 15:35 GMT | 4 |
I want to change a row of ListView Cells into either Dropdown Lists and TextBoxes on click of a button 'Edit'. Can anyone help me on how to do that? Thanx.
|
| datagridview Col 0 Visible = false, still shows up | 03 Aug 2006 14:20 GMT | 6 |
I have a tab control with many datagridview controls on it. I have an ID column in column 0 on most of them. In the edit columns area I set the columns visible property to false yet when I run the program it still shows up. To fix this I can hide it if I do it programatiacally ...
|
| CollectionEditor not available? | 03 Aug 2006 10:42 GMT | 1 |
Has anyone experienced that System.ComponentModel.Design.CollectionEditor is not available? I need to implement a collection property for a usercontrol and thus need that class very bad.
|
| Name of control does not work | 03 Aug 2006 10:15 GMT | 1 |
I don't want to use Control Collection. I want to control name as string only for changing some properties. Ex. Me.Controls("NameLabel").Text = "Full Name"
|
| How to hide the main form? | 03 Aug 2006 02:13 GMT | 1 |
The only UI for my application is a NotifyIcon and its associated context menu (displayed in what used to be called the "system tray", next to the time in the task bar). In Visual Studio 2003, I was able to run my application without a visible
|
| DataGridView - Set width of "row header" column | 03 Aug 2006 01:27 GMT | 2 |
How do I change the width of the "row header" column while I'm setting up a grid in the designer? TIA - Bob
|
| Raised Panel | 02 Aug 2006 15:55 GMT | 1 |
I have a splitter pane with a treeview control in it. I'd like to put some kind of raised panel with a textual caption above the treeview. For some reaosn I can't seem to see how a "Panel" control can be of a "raised" style. Any recommendations?
|
| TreeView performance | 02 Aug 2006 15:48 GMT | 2 |
I posted this earlier today on languages.csharp and now I discover this newsgroup. Sorry for the duplicate! I populate a TreeView (tv) with 1110 nodes like this: for (int i = 0; i < 10; i++)
|
| Responding to size changes | 02 Aug 2006 12:59 GMT | 3 |
I have a form and a tab control on it. Is there a quick way to make sure the size of the tab control matches that of the form when it resizes? or do I have to intercept the size change event from the form and 'manually' change the bounds of the tab control?
|
| ImageList StateImageList | 02 Aug 2006 10:38 GMT | 2 |
Two questions about ListViews in NET.....I am using the StateImageList option to display state information about items...if I set the StateImageList member AND set the CheckBoxes propery then the correct image is displayed based on the StateImageIndex value for the item... ...
|