scottintexas
Programmer
When the user clicks on "Cancel" the pop-up form is supposed to close itself. I am using
and I have also used the "Me" keyword for the form name. Yesterday this was working (or appeared to be working). No errors no prompts, it just doesn't close the form. I end up having to click on the close control in order to actually close it. I have checked all the properties and can't find anything there that would help.
ScottInTexas
It's probably as hard as it looks.
Code:
Private Sub cmdCancelSurvey_Click()
DoCmd.Close acForm, "frmNewSurvey"
End Sub
ScottInTexas
It's probably as hard as it looks.