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
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