code_junkie

VC# 2008: Get Table names from DataTable into ComboList / How to merge tables from 2 MDBs

Nov 14th, 2011
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. Dim DS as new DataSet
  2. Dim DT as new DataTable("TableName")
  3.  
  4. DS.Add(DT)
  5.  
  6. For each table as DataTable in DS.Tables
  7. Console.Writeline(table.TableName)
  8. Next
Add Comment
Please, Sign In to add comment