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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Getting data from Datagrid 4
Binding DataGrid to an Array 4
DataGrid and ArrayList 1
Getting Data from the DataGrid. 3
Can be done? 1
Datagrid update 3
Byte Array, Datagrid 4
Datagrid Insert new 1

Back
Top