| Thread | Last Post | Replies |
|
| Change many labels in a loop | 30 Jun 2005 02:35 GMT | 5 |
I have several labels on a form, and want to change the text of all of them, preferably inside a loop (so that I can iterate through them later). So far, I have come up with this: Enum Descs
|
| ListView with owner drawn header? | 29 Jun 2005 22:28 GMT | 3 |
Hi, does anyone have a ListView with owner-drawn headers? I found an article on CodeProject but it has bugs in redrawing when the control is horizontally scrolled and a header is clicked. I also found a C++ ListView with owner-drawn headers, but it’s
|
| DataGrid CurrentRowIndex problem | 29 Jun 2005 20:28 GMT | 6 |
I want to detect on which row of the datagrid user clicked and open values of that row in a new form so user can do update. If user clicked on NewRow then instead of update open Add screan so user can add new values to the grid.
|
| Combo Button on a VB Studio Form | 29 Jun 2005 19:40 GMT | 1 |
I have a Visual Basic form using Visual Stuido 2003 that contains a combo button which gets loaded at form load time using an executeReader command. How can I scroll to the appropriate row & display the results when the user types something into the box. i.e. the combo details ...
|
| checkboxes in TreeView control | 29 Jun 2005 17:42 GMT | 3 |
I'm wonder if there is possibility to switch off checkboxes of pointed ties (nodes) of the tree in the TreeView control ? Gr
|
| Textbox, keypress keychar, non ASCII characters | 29 Jun 2005 09:27 GMT | 10 |
The KeyPress event of the textbox has the KeyChar member, which is defined to give "The ASCII character that is composed". What if the character is not ASCII? If I go get some unicode characters (ößäü) and paste them into a textbox,
|
| First Time Using User Control | 28 Jun 2005 17:50 GMT | 2 |
I downloaded and added a user control from: http://www.codeproject.com/vb/net/PictureHoverButton.asp Now when I try to drag and drop the control on to my form I get the following error:
|
| How to change the font of ColumnHeader used in ListView? | 27 Jun 2005 21:08 GMT | 3 |
I am writing a WindowsForms application using VS.NET in C#. I am using the ListView control with two ColumnHeaders. It appears I can set the font for ListViewItems but I can't find a way to set the font for the column headers. Is there a way to set the font and font style (Bold) ...
|
| Confused Over TabPage Behavior | 27 Jun 2005 12:56 GMT | 5 |
I have developed a form (C#/.Net 2003) that contains some controls on the form itself, one of which is a tab control; and the tab control contains several pages, two of which contain one or more CheckedListBox controls each. The system works well as long as I ensure that ...
|
| Inherit from TabPage? | 27 Jun 2005 09:18 GMT | 5 |
I have taken over maintenance of some code. In that code there is a class ITP that inherits from TabPage. It has a couple of methods and a browsable method or two. Nothing special so far. What is special is that the collection of tabpages in TabControl.TabPages is made up of ...
|
| Set the left "column length" of my Datagrid | 27 Jun 2005 06:26 GMT | 3 |
Hi .net gurus! I'm working with a DataGrid in a very small form and need to smart-use my grid length. I have no problem with the rest, but the left gray column (the one that serves to select te complete row) is huge (for this
|
| Versioning of custom Controls | 26 Jun 2005 22:53 GMT | 1 |
I've created a few Controls that reside in a control library. It is currently version 1.0.0.1. I've added the controls to the toolbox in Visual Studio .NET 2003 so that I can drop them onto forms in a different solution - these are completely
|
| Editing contents of formatted numerical DataGridTextBoxColumn cell | 26 Jun 2005 09:37 GMT | 1 |
I make a windows vb.net winform application, but i have a small problem related with the usage (and programming?) of the numerical DataGridTextBoxColumn cells formatted by dgColumn.Format = "N" property. It shows nicely the entered number with thousand separators, decimals point ...
|
| SetItemChecked not working | 24 Jun 2005 22:55 GMT | 1 |
I feel like I am trying to do the most simple thing in the world by setting the checked property to true on my CheckedListBox with SetItemChecked by calling it in the constructor of my form. However, when the form renders, nothing is checked. Does anybody know of a step that I ...
|
| Button in a panel | 24 Jun 2005 20:46 GMT | 1 |
I have a search button inside a panel. Each time, the user has to go & click the button in order to get the results page. Instead, I want the same action performed when I hit the "Enter" key. Any ideas? Thanks,
|