I'm having two users test a new version of one of my databases and they are getting an error when they click a button to open a new form. The error is:
The button has a simple piece of code on it:
The users and I are all using Access 2007 but the database is being saved in 2003 format. Of course, it works just fine for me so I can't troubleshoot as well as I would like and Google isn't helping much.
Any thoughts?
The expression On Click you entered as the event property setting produced the following error: The OpenForm action was canceled.
*The expression may not result in the name of a macro, the name of a user-defined function, or [Event Procedure].
*There may have been an error evaluating the function, event, or macro.
The button has a simple piece of code on it:
Code:
Private Sub Command72_Click()
DoCmd.OpenForm "frmReqSearch", acNormal
End Sub
The users and I are all using Access 2007 but the database is being saved in 2003 format. Of course, it works just fine for me so I can't troubleshoot as well as I would like and Google isn't helping much.
Any thoughts?