Warning Message (1 Viewer)

cstuckey

Registered User.
Local time
Today, 06:38
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. :(
 

Rob.Mills

Registered User.
Local time
Today, 01:38
Joined
Aug 29, 2002
Messages
871
On Exit

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

Users who are viewing this thread

Top Bottom