Hi, I have some questions on datagrid.
Q1) In datagrid they have .columns
for you to refer to a certain column. For example, [some grid].columns(0) let's you refer to the 1st column. But I don't know how to get values from a certain cell. I have tried this:
Dim CellThings as string
CellThings = DGrid.Columns.Item([some number]).Value
But it is not working correctly.
I also tried
CellThings = DGrid.Columns.Item([some number]).CellText
And results in error.
Q2) How do you refer to a row in datagrid?
DGrid.Rows(0) doesn't seem right.
Q1) In datagrid they have .columns
Dim CellThings as string
CellThings = DGrid.Columns.Item([some number]).Value
But it is not working correctly.
I also tried
CellThings = DGrid.Columns.Item([some number]).CellText
And results in error.
Q2) How do you refer to a row in datagrid?
DGrid.Rows(0) doesn't seem right.