No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Re: 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 … | |
Re: 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 … | |
Re: You might try: SELECT * FROM test ORDER BY City | |
Re: 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. | |
Re: [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 … | |
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 … | |
Re: This may be helpful. [URL="http://support.microsoft.com/default.aspx?kbid=258192"]http://support.microsoft.com/default.aspx?kbid=258192[/URL] | |
Re: [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 … |
The End.