Navigating through a dataset

G

Guest

Hi,
Is there a way to navigate through the rows of a dataset without having to
bind to a control? (at a guess, something like .Current +1)

Thanks for any ideas

Ant
 
N

Norman Yuan

foreach (DataRow r in MyDataSet.Tables[0].Rows)
{
//do something with the DtaaRow: r
}
 

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

Top