B
Bryan Hughes
Hello,
I have a form that has two textbox that are required fields. How can I
prevent the user form leaving that textbox until something is entered?
Should I use an on Exit code?
If (IsNull(textbox) Or textbox="") Then
Cancel = True
Else
Cancel = False
End If
Something like this, or should I use something else?
-Bryan
I have a form that has two textbox that are required fields. How can I
prevent the user form leaving that textbox until something is entered?
Should I use an on Exit code?
If (IsNull(textbox) Or textbox="") Then
Cancel = True
Else
Cancel = False
End If
Something like this, or should I use something else?
-Bryan