Here is what I'm currently using. It works fine, but takes several seconds to complete. Is there a faster way? I've tried creating a list of DataColumn and using table.columns.addRange(list.toArray) with no improvement. I just need the columns to be numbered from 0 to 67.
If appTable.Columns.Count = 0 Then
'adds columns 0 to 67 to table
For x = 0 To 67 Step 1
appTable.Columns.Add(x, GetType(String))
Next
End If