Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~4K People Reached
Favorite Forums
Favorite Tags

8 Posted Topics

Member Avatar for rfrei

Application.Doevents can cause some very unexpected results and problems of it's own. I'm not going to say it doesn't have it's place, but you want to be careful with it, it is not a replacement for proper threading design. OP it sounds like what you need to implement is a …

Member Avatar for rfrei
0
236
Member Avatar for telltouday

Perhaps someone will come along with an ingenious way to delete the cells that I'm not aware of, but offhand I'd say the problem and therefore the solution lies in your datatable and by extension datastorage or query. You seem to be thinking of the datagrid in the context of …

Member Avatar for telltouday
0
300
Member Avatar for dre-logics
Member Avatar for Ragoune

First thing I thought of was that you may be overwritting the formatting with new text, or maybe placing the routine under the wrong control.

Member Avatar for thecoat
0
757
Member Avatar for tqmd1

[CODE]str = "SELECT sno,name,city FROM employees" cmd = New SqlClient.SqlCommand(str, con) da = New SqlClient.SqlDataAdapter(cmd) dt = New DataTable da.Fill(dt) With ComboBox1 .DataSource = dt .DisplayMember = "name" .ValueMember = "sno" .SelectedIndex = 0 End With 'The following line needs to be added to get the correct value into the …

Member Avatar for thecoat
0
134
Member Avatar for thecoat

What I'm designing is a user control who's purpose is to gather a list of records from a SQL database based on criteria selected on the control and then transmit this list to various other systems or devices. To accomplish this I've defined a .Net interface which each endpoint having …

0
72
Member Avatar for wiss.dev

This may be helpful. [URL="http://support.microsoft.com/default.aspx?kbid=258192"]http://support.microsoft.com/default.aspx?kbid=258192[/URL]

Member Avatar for thecoat
0
77
Member Avatar for rfrei

[QUOTE=rfrei;1081846]I am trying to send a command to the external command line (cmd.exe) from the Windows form application that I'm writing in VB.NET (using VS2008). I can only access the external program thru the command line (its not my program) and I must do so from a form app. I …

Member Avatar for thecoat
0
2K

The End.