Dataset cycle through

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

I have created a oledbdataadapter/OledbConnection
and dataset. I would like to cycle through all records
that the dataset has to implant into a treeview as nodes.
How do i do this? This is a win app.

Thanks,

JJ
 
dim dr as datarow
for each dr in dataset.tables("tablename").rows
'access each record individually here.
next dr


Rajesh Patel
 
Back
Top