If I have a dataset that has field1 and field2, how do I retrieve just field1's value?
I have a count of the number of records in the dataset (recordcount).
I want to loop through them like this.
For i = 0 to recordcount
if string = "dataset.table.field1(i)" <-- this is where I am stuck
do this
else
do this
Next
Thanks for the help.
I have a count of the number of records in the dataset (recordcount).
I want to loop through them like this.
For i = 0 to recordcount
if string = "dataset.table.field1(i)" <-- this is where I am stuck
do this
else
do this
Next
Thanks for the help.