D
Dan @BCBS
The code below alerts the user that some fields are blank.
It works until the last line!!!
How can I make it keep the form open an go to the first blank field, then
the second etc..(I'll be adding more)???
Private Sub Form_Close()
If (IsNull(Me.FirstName)) Or (IsNull(Me.LastName)) Then
If MsgBox("Do you want to Edit Member Information now?", vbQuestion &
vbYesNo, "Question") = vbYes Then
(Me.???) ???.SetFocus
It works until the last line!!!
How can I make it keep the form open an go to the first blank field, then
the second etc..(I'll be adding more)???
Private Sub Form_Close()
If (IsNull(Me.FirstName)) Or (IsNull(Me.LastName)) Then
If MsgBox("Do you want to Edit Member Information now?", vbQuestion &
vbYesNo, "Question") = vbYes Then
(Me.???) ???.SetFocus