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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top