K
Kiyomi
I have a DataSet defined as follows :
Dim ds As New DataSet
ds.Tables("MyTable").Rows(i)("MyFieldName")
where I can go through from one record to another using 'i'.
Now I created a DataView as follows :
Dim dv As New DataView(ds.Tables("MyTable"))
dv.RowFilter = "MyRowFilter"
dv.Sort = "MySort"
I would like to go through one record to another just as I did for my
DataSet.
How can I do this ?
Thanks,
K
Dim ds As New DataSet
ds.Tables("MyTable").Rows(i)("MyFieldName")
where I can go through from one record to another using 'i'.
Now I created a DataView as follows :
Dim dv As New DataView(ds.Tables("MyTable"))
dv.RowFilter = "MyRowFilter"
dv.Sort = "MySort"
I would like to go through one record to another just as I did for my
DataSet.
How can I do this ?
Thanks,
K