LOFRANK Posted March 19, 2004 Posted March 19, 2004 (edited) Sort a DataTable after Fill.... sorry.... i need to sort my dataTable after i filled it, how?.. thnk you! Edited March 19, 2004 by LOFRANK Quote live any day of your life like your last.
Moderators Robby Posted March 20, 2004 Moderators Posted March 20, 2004 Use the RowFilter of the Dataview of the datatable. dv.RowFilter = "MyColumn = '" & SomeString & "'" Quote Visit...Bassic Software
betrl8thanever Posted March 21, 2004 Posted March 21, 2004 Use the RowFilter of the Dataview of the datatable. dv.RowFilter = "MyColumn = '" & SomeString & "'" To add to what Robby is saying you can also do it in your SQL syntax if you are using your own, by using order by. Ex: "SELECT * From DatabaseName.TableName ORDER BY columnName" Quote "In the immortal words of Socrates, who said "' I drank what?!'"
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.