Hi
Have a dataset with a table in it. Need to loop through this table and select the value of cell(1) from the table.
Have tried the following
The error I am getting is:Expression is of type System.Data.DataColumn, which is not a collection type.
Mike55.
Have a dataset with a table in it. Need to loop through this table and select the value of cell(1) from the table.
Have tried the following
Code:
For Each selIndex In dsDataset.Tables(page).Columns(0)
Next
Mike55.