S
Sam Y.
Hello, I am trying to do a sort of validation of a control. The following is
basically what occurs when I click a button.
If [text18] = Null Then
MsgBox "textbox is null"
Else
MsgBox "textbox is not null"
End If
For some reason, even though the textbox contains no text and is seen when I
debug as null, the MessageBox ends up saying "textbox is not null", when in
fact, it has nothing in it. I'm assuming it's a syntax error but I can't
figure out how to check for null values.
basically what occurs when I click a button.
If [text18] = Null Then
MsgBox "textbox is null"
Else
MsgBox "textbox is not null"
End If
For some reason, even though the textbox contains no text and is seen when I
debug as null, the MessageBox ends up saying "textbox is not null", when in
fact, it has nothing in it. I'm assuming it's a syntax error but I can't
figure out how to check for null values.