Help With Datagrid...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have a datagrid in a Windows Aplication.
The user can Insert, delete or change any value, and I want to store that information in a array (or other variable)
How can I now if a new column was created
How can I read all rows of the datagrid to my array

Thanks for your help
Bernardo
 
Dim Row as DataRo
Dim aArray(Dataset.Tables("MyTable").Rows.Count) as Strin
Dim intCount as Int32 =

For Each Row in Dataset.Tables("MyTable").Row
aArray(intCount) = Row.Item("MyItem"
intCount = intCount +
Nex
 
Back
Top