| Thread | Last Post | Replies |
|
| Expand/Collapse ComboBox | 20 Sep 2006 22:08 GMT | 2 |
Hi NG, I try to use the ComboBox such as the 'ComboBox' in an IE or Explorer Windows. All the time the text will change, the control should only shows the Values
|
| Retrive information from UserControls | 20 Sep 2006 18:33 GMT | 1 |
I had write a user control with two textbox, then i had draw this control on a form with a button. How can i retrive the values in the two textbox when i press button on the form ?
|
| Really odd problem with inheritance | 20 Sep 2006 15:45 GMT | 1 |
I bumped into a (to me) very strange problem. It took me nearly two days to figure out what on Earth was happening. I have three things in my test project: 1) Background.cs - Defines a background, basically a bunch of get/set
|
| KeyDown not capturing all keys | 19 Sep 2006 21:21 GMT | 6 |
I have a control that handles the KeyDown event but it does not seem to execute when a combination of keys is pressed - like CTRL+Z. If I press CTRL, it executes. If I press Z, it executes. But the handler does not see the combination.
|
| ListView -- preventing ColumnHeader resizing | 19 Sep 2006 19:13 GMT | 3 |
Anyone know of a way to prevent the resizing of the ColumnHeaders in a multicolumn ListView? I'd like them to remain fixed in this particular application. Thanks in advance. Roy
|
| DataGridView Adding Rows | 18 Sep 2006 14:35 GMT | 6 |
I would like to add a row to a bound datagridview by clicking on a button and have the cursor placed on the new row and the DataGridView's cells filled with default values. Also if the users presses the ESC key for the new row the row would be removed (behavior
|
| embedding another control in an inherited usercontrol | 17 Sep 2006 20:37 GMT | 3 |
I have a UserControl that inherits from the Label Control. I surpress any drawing it normally does and draw my own Label by overriding the OnPaint. The objective with my Label is to embed a TextBox as well, so, it'd be a Label + TextBox in one. (Instead of having to use a Label ...
|
| Datagridview Update fails | 17 Sep 2006 14:09 GMT | 1 |
Insert works, update doesn't. Please take 2 minutes and try this? I have tried asking this question before, and I'm stumped and frustrated, and I have years of VB experience back to version 5.
|
| Exposing protected properties | 15 Sep 2006 17:48 GMT | 5 |
I need to associate text with a toolstripseparator. The underlying class toolstripitem has a text property which presumably toolstripseparator manages to hide. I want to code something like
|
| Progressbar Help | 15 Sep 2006 14:12 GMT | 4 |
I have a MDI application that each ChildForm merges their respective StatusStrips onto the ParentForm so that I can control the progressbar and status text. My problem is that the progressbar progression is not shown, though its visible property is changed correctly. Below is the ...
|
| dataGridView Cell Parsing Error ESC | 15 Sep 2006 05:08 GMT | 1 |
In the DataGridView if their is a cell parsing error it gets handled in the private void dataGridView1_DataError(object sender, DataGridViewDataErrorEventArgs e)
|
| WinForms UserControl design mode property settings not persisting! (VS 05) | 14 Sep 2006 18:03 GMT | 1 |
I'm doing a WinForms UserControl and my property settings in design mode don't seem to be persisting at all. The deal is, I've got a BUNCH of screens that are pretty much the same, so I made a UserControl (with a bunch of fields on it that can be
|
| Validating input on a control | 14 Sep 2006 10:42 GMT | 4 |
I have two text boxes on a windows form and each has an associated ErrorProvider. The maximum value of textBox2 must not exceed the value entered into textBox1. I am capturing the 'Leave' event from textBox1 to update the maximum value
|
| Scrolling UserControl with mouse wheel | 14 Sep 2006 08:55 GMT | 1 |
I have a UserControl that contains some child controls (in more detail I programmatically add some labels arranged in a FlowLayoutPanel). When the content of my UserControl exceeds its height, it should be scrollable, therefore I set the AutoScroll property of my UserControl
|
| Text alignment in TextBox... | 13 Sep 2006 21:03 GMT | 1 |
I have a .NET 1.1 textbox that displays a file name with path. When the path+name is too long to fit in the textbox, I would like to display only the right-most characters (the filename, truncating the path part, but still horizontally scrollable).
|