我行通過在一個DataGridView循環如下:如何跳過DataGridViewRow?
For Each orow As DataGridViewRow In GV_NS.Rows
If orow.Cells(0).Value.Length = 0 Then
//Skip this row and go to next row
Else
//do this
End If
Next
我希望能跳到下一行,如果第一列是空的。我試過在If orow.Cells(0).Value.Length = 0
中只使用Next
,但是它引發了語法錯誤If must end with matching End If
。有什麼建議麼?
我不敢相信我忽略了這一點。謝謝。 – TimeBomb006