I am trying to find a way to insert a message into a textbox if the entry in a table is null or blank. I have tried the following code, but the textbox is not displaying the message. I know I have coded wrong but cannot see it. Can someone please point out my error. Thanks
Private Sub UserDataGridView_CellContentClick(ByVal sender As System.Object,
ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) _
Handles UserDataGridView.CellContentClick
Dim value As Object = UserDataGridView.Rows(e.RowIndex).Cells(0).Value
Dim NoEdit As Object = UserDataGridView.Rows(e.RowIndex).Cells(1).Value
Dim InvCnt As Object = UserDataGridView.Rows(e.RowIndex).Cells(2).Value
Dim InvAddress As Object = UserDataGridView.Rows(e.RowIndex).Cells(3).Value
Dim Email As Object = UserDataGridView.Rows(e.RowIndex).Cells(4).Value
Dim Tel As Object = UserDataGridView.Rows(e.RowIndex).Cells(5).Value
Dim Fax As Object = UserDataGridView.Rows(e.RowIndex).Cells(6).Value
txtCustomerActive.Text = CType(value, String)
txtCustomerNoedit.Text = CType(NoEdit, String)
txtInvoiceContact.Text = CType(InvCnt, String)
txtInvoiceAddress.Text = CType(InvAddress, String)
txtEmail.Text = CType(Email, String)
txtCustomerTelephone.Text = CType(Tel, String)
If Fax Is Nothing OrElse IsDBNull(Fax) Then
txtCustomerFax.Text = "No Number on record" ' Display if no record
Else
txtCustomerFax.Text = CType(Fax, String)
End If
' txtCustomerFax.Text = CType(Fax, String)
End Sub