Larry Brister
asked on
.Net manipulate datatable
How do I take a DataTable and create a view that skips the first 5 columns in vb.net?
Or actually removes the first 5 columns form the datatable
Using dt As New DataTable("Leads")
' blah... blah... blah...
End Using
Or actually removes the first 5 columns form the datatable
Using dt As New DataTable("Leads")
' blah... blah... blah...
End Using
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks