Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim dr as datarow
for each dr in YourDataSet.tables(0).rows
debug.writeline dr("FieldName").tostring
next
dim i as integer
for i = 0 to YourDataSet.tables(0).rows.count-1
debug.writeline YourDataSet.Tables(0).Rows(i).item("FieldName").tostring
next
dim dr as datarow
for each dr in YourDataSet.tables(0).rows
debug.writeline dr("FieldName").tostring
next
for each dr as datarow in YourDataSet.tables(0).rows
debug.writeline dr("FieldName").tostring
next