S
S. Justin Gengo
Frank,
I don't know of any way to add an array of rows. I believe that you'll have
to iterate through the array and add each one at a time:
DataTable.Rows.Add(SingleDataRow)
But to clear all rows is pretty easy:
DataTable.Rows.Clear()
Justin
I don't know of any way to add an array of rows. I believe that you'll have
to iterate through the array and add each one at a time:
DataTable.Rows.Add(SingleDataRow)
But to clear all rows is pretty easy:
DataTable.Rows.Clear()
Justin