Erm, how to split a string using comma separated into a table? Below is my code but the output seems weird:
Lets say the row has 40 elements and 30 rows:
For Count = 0 To UBound(MyArray)
For a = 0 To UBound(MyArray)
Dim celNew As New TableCell()
'Dim rowNew As New TableRow()
'MyArray = Split(strContents, ",")
celNew.Text = MyArray(a)
rowNew.Cells.Add(celNew)
Table1.Rows.Add(rowNew)
Next
Next
Thanks.....