I
iam
Private Sub RecipeName_Exit(Cancel As Integer)
If IsNull(Me![RecipeName]) Then
MsgBox "Please enter a Recipe Name."
Cancel = True
RecipeName.SetFocus
End If
Seems to be working in the Application just fine except for one thing.
When I switch from Form View to Design View the Msg Box is coming up
every time. And it takes 2 clicks of the mouse to get rid of it.
A little bit of code causing so many unintended results.
If IsNull(Me![RecipeName]) Then
MsgBox "Please enter a Recipe Name."
Cancel = True
RecipeName.SetFocus
End If
Seems to be working in the Application just fine except for one thing.
When I switch from Form View to Design View the Msg Box is coming up
every time. And it takes 2 clicks of the mouse to get rid of it.
A little bit of code causing so many unintended results.