Warning Message

cstuckey

Registered User.
Local time
Today, 13:59
Joined
Mar 6, 2000
Messages
23
I have a pretty simple task to do but forgot how to make it work. I want a message box to appear like "STOP!!! Please fill in the status before moving on." before they move to the next field in the form. How is this done? I don't want them to be able to add info from the next field until they have done this. :(
 
On Exit

If IsNull(FieldName) Then
msgbox ...
Me!FieldName.SetFocus
End If
 

Users who are viewing this thread

Back
Top Bottom