J
Jeffery B Paarsa
Hello,
Here is the code:
Dim objDataRow As DataRow
objDataTable = New Data.DataTable("ZPtTable")
Try
objConn.Open()
objDataAdapter.Fill(objDataTable)
For Each objDataRow In objDataTable.Rows
If IsNull(objDataRow.ItemArray(15)) Then
Me.PEmrCont.Text = "?"
Else
Me.PEmrCont.Text = objDataRow.ItemArray(15)
End If
......
I am getting a curly blue line under IsNull "Name IsNull is not declared"?
Why is that? What am I missing?
Here is the code:
Dim objDataRow As DataRow
objDataTable = New Data.DataTable("ZPtTable")
Try
objConn.Open()
objDataAdapter.Fill(objDataTable)
For Each objDataRow In objDataTable.Rows
If IsNull(objDataRow.ItemArray(15)) Then
Me.PEmrCont.Text = "?"
Else
Me.PEmrCont.Text = objDataRow.ItemArray(15)
End If
......
I am getting a curly blue line under IsNull "Name IsNull is not declared"?
Why is that? What am I missing?