R
Raymond Clarke
Can someone please assist me with the following. I want
to check a textbox to see if it is null, if so, close the
form. If the textbox is filled, I want to call a sub.
This is not working. Please HELP! Thank you.
Private Sub cmdClose_Click()
If PolicyData![QCCorrect].Value = True Then
DoCmd.Close
Else
Call Verify
End If
End Sub
to check a textbox to see if it is null, if so, close the
form. If the textbox is filled, I want to call a sub.
This is not working. Please HELP! Thank you.
Private Sub cmdClose_Click()
If PolicyData![QCCorrect].Value = True Then
DoCmd.Close
Else
Call Verify
End If
End Sub