mizenerman
MIS
I have created a button that will allow the user to exit and close the form if necessary. The problem is that I have a required field that is being verified before the form is closed thus creating the user to enter an arbitrary value in the field then pressing the button again. The code for the field is:
Private Sub MRN_Exit(Cancel As Integer)
If IsNull(Me![MRN]) Then
Cancel = True
MsgBox " MRN is required."
Me![MRN].SetFocus
End If
End Sub
The code for the button is:
Private Sub Cancel_and_Exit_Click()
DoCmd.Quit acQuitSaveNone
End Sub
How do I get VB to ignore that required field when clicking the button? Any guidance is much appreciated.
Thank you!
Private Sub MRN_Exit(Cancel As Integer)
If IsNull(Me![MRN]) Then
Cancel = True
MsgBox " MRN is required."
Me![MRN].SetFocus
End If
End Sub
The code for the button is:
Private Sub Cancel_and_Exit_Click()
DoCmd.Quit acQuitSaveNone
End Sub
How do I get VB to ignore that required field when clicking the button? Any guidance is much appreciated.
Thank you!