loop filtered dataview

Richnl

Well-known member
Joined
Mar 20, 2007
Messages
93
Programming Experience
Beginner
Maybe very simple, and I am still looking myself

I need to be able to delete rows between dates from a table
I can figure out the filter

But how do I loop the filtered dataview

Dim dv as new dataView=dataset.table.defaultView
Dim dr as datarowview
Dim Filt as string

for each dr in dv.... won't work

because it loops all rows in the underlying table



thanks, Richard
 
Back
Top