| Thread | Last Post | Replies |
|
| TreeView text truncated | 13 Jul 2006 15:35 GMT | 2 |
Using .net 2.0 and C# I have a TreeView in which I put some nodes with rather long text. The problem is that some times the text gets truncated and other times the horizontal scrollbar appears but doesn't allow the control to scroll all the way to the end of the text.
|
| Multiline combobox | 13 Jul 2006 14:42 GMT | 2 |
I'm looking for a multiline combobox. The only way I found was this one: http://www.vbcity.com/forums/faq.asp?fid=15&cat=ListBox%2FComboBox#TID58434 Does anybody has any other suggestions? Thanks a lot in advance,
|
| ToolBar Click event | 13 Jul 2006 03:39 GMT | 4 |
On a regular button I can use the PerformClick method How to perform the same effect on a Tollbar Button? Thanks Marcos
|
| Change the value of a Listview subitem | 13 Jul 2006 00:38 GMT | 2 |
I have a ListView box in my form which is populated by an array : Dim item2 As New ListViewItem(index & ".") item2.Checked = True item2.SubItems.Add(r.description)
|
| How to find the parent form for a ContextMenuStrip | 12 Jul 2006 20:55 GMT | 1 |
Hi, I have a ContextMenuStrip that is used on various forms. When somebody opens the context menu on a specific form (e.g. Form2) and clicks a menu item, I need to execute some action on that form. Is there a way to determine the
|
| treeview | 12 Jul 2006 19:45 GMT | 3 |
I have a treeview wist several nodes each node has its own context menu for now, every menuitem in theese menues has the same code: msgbox (treeview1.selectednode.name.tostring,okonly)
|
| How to paint 4 panels on a form separately at the same time without flicker | 12 Jul 2006 16:32 GMT | 1 |
i've got a big problem with painting 4 or more than 4 control such as panel on a form. i have 4 panel that their width and height is 3000px on form and also a hscrollbal control that when i move the scroll bar the 4 panels move
|
| Custom title bar size in Non-client area | 12 Jul 2006 16:07 GMT | 3 |
I am trying to make a custom size title-bar in the non-client area of the form. I've tried hooking to the NCCALCSIZE message with this code: case (int)Native.NativeMethods.WindowMessages.WM_NCCALCSIZE: if (m.WParam == IntPtr.Zero)
|
| Change Display pattern of Datagrid | 12 Jul 2006 15:14 GMT | 6 |
I am trying to change the way the datagrid looks like ie, i want to have only two columns one for the column names and the other for the values of the columns,instead of displaying in a single row
|
| override maximize event | 12 Jul 2006 15:05 GMT | 2 |
I'm looking to execute a function when the Max button is clicked. I'd like to override the maximize event on an MDI child form so that instead of maximizing, it just fills the MDI area. I've found the code to max the form to the mdi size, but no luck on how to execute my
|
| .NET 2.0 and System.Configuration.ApplicationSettingsBase | 12 Jul 2006 14:06 GMT | 5 |
I think that ApplicationSettingsBase class on .NET 2.0 framework is very useful and easy to use, in order to store global and personal paramenters for a winform application. The only behaviour that I don't like is where it saves updated user
|
| Help with form.treeview control? | 12 Jul 2006 13:38 GMT | 1 |
Using C# I want to know if it is possible to limit the user to only being able to see the path of the current node. In other words I dont wan't the user to be able to see any expanded
|
| Detecting application close | 12 Jul 2006 10:55 GMT | 2 |
A friend is configuring windows in a way that he's not using explorer shell, he's using something else (I hope I wrot this corectlly :) ). Now ... when shell is closed he want's to close windows down. Is it possible to create windows service that can "listen" when will an
|
| FileSystem.WriteAllText (broken methodl) | 12 Jul 2006 10:33 GMT | 3 |
Hi - I am trying to dynamically write vbscript file to c drive. But it will not execute. I have notice some crap in windiff which suggest that VB has unusual way of creating a file. Anyway it doesn't work and I was hoping to use the script to bypass some chunky .NET schedule ...
|
| Make Enter key act like Tab key | 12 Jul 2006 10:29 GMT | 5 |
I am using Visual Studio 2005, with VB, and I have a form where I would like pressing the Enter key to act like pressing the Tab key. In other words, if user is on a control, and presses Enter, focus would move to next control in tab order.
|