Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub DataGrid1_CurrentCellChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DataGrid1.CurrentCellChanged
Dim r As DataRow
r = DataSet11.Tables(0).Rows(DataGrid1.CurrentCell.RowNumber)
If IsDBNull(r(2)) Then
MsgBox(r(1) & " is Null")
Else
MsgBox(r(1) & " is not Null")
End If
End Sub