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

Re: Dataset cycle through by Rajesh

Rajesh
Thu Nov 20 17:06:27 CST 2003

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


Rajesh Patel

<anonymous@discussions.microsoft.com> wrote in message
news:046b01c3afb6$55ee86f0$a301280a@phx.gbl...
> 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