you can loop through the datacolumns + print the column name. you should obviously print the column headers before the rest of the datatable:

vb Code:
  1. For Each c As DataColumn In dt.Columns
  2.     MsgBox(c.ColumnName)
  3. Next