J JesseH Active member Joined Feb 9, 2006 Messages 42 Location Sugar Land, TX Programming Experience 10+ Jul 18, 2006 #1 I apologize for the question, but how do you create tables in VB.net?
vis781 Well-known member Joined Aug 30, 2005 Messages 2,016 Location Cambridge, UK Programming Experience 5-10 Jul 18, 2006 #2 That could be percieved as a bit of a generic question.. DataTable HashTable I'm going to assume you are talking about Datatables. Its as simple as..... VB.NET: Dim Dt As New System.Data.DataTable It will also take an argument for the table name if you want. Thats it. Upvote 0 Downvote
That could be percieved as a bit of a generic question.. DataTable HashTable I'm going to assume you are talking about Datatables. Its as simple as..... VB.NET: Dim Dt As New System.Data.DataTable It will also take an argument for the table name if you want. Thats it.
J JesseH Active member Joined Feb 9, 2006 Messages 42 Location Sugar Land, TX Programming Experience 10+ Jul 18, 2006 #3 Thanks Thanks for the help. Upvote 0 Downvote