N
Nguyen
Do you know what's wrong with the code below? I get an error: error in
method ~MoveNext: collection was modified. Enumeration operation may not
execute. It happens when I step through the 'Next' of for-loop
Thanks in advance,
V.
-----------------------------------
Dim dtRow As DataRow
With ds.Tables(0)
For Each dtRow In .Rows
If dtRow.IsNull("POPLINE") Then
dtRow.Delete()
End If
Next
End With
method ~MoveNext: collection was modified. Enumeration operation may not
execute. It happens when I step through the 'Next' of for-loop
Thanks in advance,
V.
-----------------------------------
Dim dtRow As DataRow
With ds.Tables(0)
For Each dtRow In .Rows
If dtRow.IsNull("POPLINE") Then
dtRow.Delete()
End If
Next
End With