newbie here. Trying to check for nulls using the ff-
if currentCathRecord("Account_Number") Is Nothing Then
MessageBox.Show("Please enter Account Number or else ...")
return
End If
Nothing happens. No errors but message is not displayed. Field is defined as varchar(25) is SQL. Any help will be greatly appreciated. Thanks.
if currentCathRecord("Account_Number") Is Nothing Then
MessageBox.Show("Please enter Account Number or else ...")
return
End If
Nothing happens. No errors but message is not displayed. Field is defined as varchar(25) is SQL. Any help will be greatly appreciated. Thanks.