.dgv(DataGridView) w/3 columns(to display row's values).
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
verifyRows()
End Sub
Sub verifyRows()
With DataGridView1
Dim iTemp As Integer = 0
If .AllowUserToAddRows Then iTemp = 2 Else iTemp = 1 '// check if extra row or not, at bottom of dgv.
For i As Integer = 0 To .Rows.Count - iTemp
If .Item("Status", i).Value.ToString.ToLower = "ok" Then
MsgBox(.Item(0, i).Value & "/" & .Item(1, i).Value & "/" & .Item(2, i).Value)
End If
Next
End With
End Sub