Here's another simple one for you all; I need to check if a text box is empty and pop up a message if it is.
I have tried:
and
but neither work.
Any ideas?
Thanks again
I have tried:
Code:
personID = Forms!Add!personID
If personID Is Nothing Then
MsgBox ("You must enter an ID number")
Else...
and
Code:
personID = Forms!Add!personID
If personID="" Then
MsgBox ("You must enter an ID number")
Else...
but neither work.
Any ideas?
Thanks again
