| FNAME | LNAME | STUDENT ID | <-- Header
---------------------------------------
| Robert | Davis | 0411542 <-- data cell
How do you call to get the value of each cell in a datagrid?
Thanks.
Printable View
| FNAME | LNAME | STUDENT ID | <-- Header
---------------------------------------
| Robert | Davis | 0411542 <-- data cell
How do you call to get the value of each cell in a datagrid?
Thanks.
i use this to total up a columnCode:For count = 0 To dgArticles.Items.Count - 1
total = total + dgArticles.Items.Item(count).Cells(5).Text
Next count
That did it! Thanks.
:)