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
Norman Yuan - 06 Jan 2006 06:29 GMT
foreach (DataRow r in MyDataSet.Tables[0].Rows)
{
//do something with the DtaaRow: r
}
> Hi,
> Is there a way to navigate through the rows of a dataset without having to
[quoted text clipped - 3 lines]
>
> Ant