Quantcast
Viewing all articles
Browse latest Browse all 8065

Re: how to delete datawindow row by loop?

To iterate from the last to the first row will do the trick:

 

long i

 

For i = dw_1.RowCount() To1Step -1

   ...

   If ( expression ) Then

      dw_1.DeleteRow ( i )

   EndIf

Next

 

hth

 

Arnd


Viewing all articles
Browse latest Browse all 8065

Trending Articles