Load again Tree.
MadArtSoft
Posts
-
How to refresh Treeview control -
Memory Leak ?Try use Using keyword. It will dispose object. Read more in MSDN about Using keyword.
-
WPF is easy to learn?If you are familiar with c# win forms then you need to change your approach. The WPF it's diffrent story.
-
DataGridViewIf you don't want to send 21 times message then you should think about how to catch your changes. One possibility is On leave event but you don't want do that. I think you should use on leave cell event.
-
browse WSDL errorI'm sorry my mistake. I mean check your web.config and server configuration where you upload your files as well. I had similar problem.
-
specific column font in a datagridVS2003 use old DataGrid control. Maybe switch to VS2005 or VS2008. There is better support for data grids.
-
start the application at computer startAdd your application path to the registry. HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run or RunOnce
-
browse WSDL errorProbably it's security issue of your server. Check your Web.settings
-
A problem with DataBinding. [modified]Try to use diffrent data source. I mean create separate Data source object.
-
Show progressbar while sending emailIf you're using standard framework class then use Send method or SendAsync to send an email. The SendAsync doesn't block the thread but you'll receive an event only when it will be finished. I think that you can only simulate the progress of sending message till you got a status event from Smtp.
-
ChekedListBox check only if mouse is over checkboxYou have to use HitTestInfo function to check current mouse position and then automatically check or uncheck the box. Sorry, this method doesn't works with CheckedListBox control.
-
Displaying & editing a two dimensional array in DataGridViewHi, Does your array implements IList interface?
-
I want to get row index of datagridviewYourDataGrid.SelectedRows[0].Index First check if YourDataGrid.SelectedRows.Count > 0
-
Programmatic saving of an existing excel fileWhen the Excel is opened then you have to attach your application to existing Excel process. The Save method works for me.
-
can we do row span and column span of c# datagridYou can override paint event and draw manually.
-
adding columns to grid view programaticallyTry this: DataGridViewCheckBoxColumn col = new DataGridViewCheckBoxColumn(); col. (fill the properties) dataGridView1.Columns.Add(col);
-
Adding bitmap icon for custom toolbox componentFrom the project you always will see the gear bitmap. Try to use option from toolbox for insert items. Then it should works.
-
ToolTip with Close buttonMaybe better use customised MessageBox with buttons.
-
how to insert a c#.net gridview in a column of another c#.net girdview?Good question! I'm working on that. I'll upload the new control on my website when resolve the problem. P.S. Maybe my current solution will help you. See www.madartsoft.com
C# controls, .Net components. Help Desk Software
modified on Monday, January 26, 2009 7:27 AM