asked on
Dim DGV1Row As DataGridViewRow
Dim CheckValue As String
For Each DGV1Row In DGV1.Rows
CheckValue = DGV1Row.Cells(1).Value
If CheckValue = "No Information" Then
MsgBox(CheckValue)
End If
Next
Dim DGV1Row As DataGridViewRow
Dim CheckValue As String
For Each DGV1Row In DGV1.Rows
CheckValue = DGV1Row.Cells(1).Value
If CheckValue = "No Information" Then
DGV1.Rows.Remove(DGV1Row)
End If
Next
ASKER
ASKER
ASKER
ASKER
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
ASKER
Many Thanks for the reply
No luck I'm afraid
I added Dim i As Integer
It does the same, deletes four or five of the values only.