0
votes
Can I insert nodes into a TreeView during AfterLabelEdit without beginning to edit them?
If you're using databinding, shouldn't the update to the data source (SomeBoundValue) trigger a refresh of the nodes? Maybe you can force the currency manager to repopulate the tree view.... If y …
0
votes
Any picture Gallery Control for .NET 1.1 in WinForms?
AFAIK there's nothing built in to display a Gallery but if you're willing to use 2.0 you can throw one together with the TableLayoutPanel pretty easily.
…
0
votes
Canceling SelectedIndexChanged in WinForm ListView
As long as you have multiselect turned off you shouldn't have to call SelectedIndices.Clear() Selectedndices.Add(..) as well as Items[_prevSelectedIndex].Selected = true; - the latter will accompli …
1
vote
Question on exporting to Excel from winforms using C#
If you want to create .xls files you'll need to either use the interop assembly or find another library that can create xls files (I don't know of any offhand). There's no way around the licensing …
-1
votes
1
vote
Resizing a Single Control In WinForms
IF you put the ListView in one panel of a SplitContainer and put the remaining controls in the other panel you can restrict the growth of the second panel by setting the min and maxsize.
If …
1
vote
How can I make a ‘Partially’ modal dialog?
You could use a modeless dialog then have your main UI check if the user has clicked the Finished button. If the modeless dialog is open but Finished hasn't been clicked then don't respond to any …
1
vote
How do I create a C# app that decides itself whether to show as a console or windowed app?
One way to do this is to write a Window app that doesn't show a window if the command line arguments indicate it shouldn't.
You can always get the command line arguments and check them befo …
1
vote
Invoke or BeginInvoke cannot be called on a control until the window handle has been created
The method in the post you link to calls Invoke/BeginInvoke before checking if the control's handle has been created in the case where it's being called from a thread that didn't create the control …
0
votes
Is it possible to switch rows and columns in a datagridview?
You can do this by programmatically adding the number of columns you need (e.g., 7 more to make 10) then programmatically swapping row, col with col, row.
…
0
votes
User scope app settings always reset to defaults.
Does CallUpgrade default to true? The call to Upgrade() should migrate settings across build numbers.
Another approach is to use fixed build numbers. You can manually modify your Assembly …
0
votes
Correct useage of OnClick vs. MouseClick events in Winforms using C#
In Winforms, the Click event is raised when either mouse key is clicked.
…
2
votes
Most efficient way to ensure uniqueness of treeView property as user enters new values
If the user builds the tree from scratch then if you insert each name into a Hashtable you can quickly check for duplicates by checking for the existence of the name in the Hashtable. You'll have …
0
votes
Can I load more than one COMCTL32.dll into a process?
If your application calls Application.EnableVisualStyles() (typically before calling Application.Run() to start a message loop) then version 6+ of the common controls library should be used.
…
1
vote
How to draw a custom DataGridView multi-column header
DataGridView doesn't have built in support for column spanning. You might be able to hack something together by deriving your own Cell and Column types. The cust DataGridViewCell would be a singl …
