how to navigate though dataset or datatable

tommybeer

Member
Joined
May 4, 2005
Messages
15
Programming Experience
Beginner
hello,

you all know the 4 arrows, first, previous, next and last.

how do they work?

lets say i have a dataset full with data

and i want to see the first then if i click on next i want to see the next, ...

can anybody help me with this,

i think this might seem way to easy for some, but not for me :)

thx

tom
 
just remember that a dataset is a collection of datatables

so:
oData.tables(0).Rows(0).Item("acct")

next:
oData.tables(0).Rows(1).Item("acct")
 
Back
Top