Usually, I use the onlostfocus event of the control:
Private Sub ControlName_LostFocus()
If IsNull(Me.ControlName) Then
MsgBox "ControlName cannot be left empty", vbOKOnly, "Missing Entry"
Me.ControlName.SetFocus
End If
End Sub
This warns the user they cannot leave it empty before proceeding and sets the cursor back in the control.
Let them hate - so long as they fear... Lucius Accius
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.