Creating Tables in VB.Net

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.
 
Back
Top