I have finished the design of my DB and am ready to distribute it to my users. Everything seems to work fine and it installs great.
Upon opening the appication, users are presented with a form that serves as the main menu. On the form there are 4 buttons:
1. To search for records
2. To enter new data
3. To edit existing data
4. To exit the application
Although everything works fine on my PC woth the full version of Access 2010, the following error pop up on the users PC´s with the runtime version (I´m the only one in the company with a full blown version):T
The expression "On Click" you specified as the value of the property from the failed event.
*expression does not result in the name of a macro, a user-defined function, or [Event Procedure]
*There was an error evaluating the function, event or macro
And it stops there. The users are not able to continue. The code behind the buttons is pretty simple:
Any suggestions out there on what it is that can go wrong here? Even to me, this is very simple straight forward VBA code to open up a form, nothing more.
Upon opening the appication, users are presented with a form that serves as the main menu. On the form there are 4 buttons:
1. To search for records
2. To enter new data
3. To edit existing data
4. To exit the application
Although everything works fine on my PC woth the full version of Access 2010, the following error pop up on the users PC´s with the runtime version (I´m the only one in the company with a full blown version):T
The expression "On Click" you specified as the value of the property from the failed event.
*expression does not result in the name of a macro, a user-defined function, or [Event Procedure]
*There was an error evaluating the function, event or macro
And it stops there. The users are not able to continue. The code behind the buttons is pretty simple:
Code:
Private Sub cmdBuscar_Click()
DoCmd.OpenForm "frmBuscar", , , , , acDialog
End Sub
Private Sub cmdNueva_Click()
DoCmd.OpenForm "frmDataentry", , , , , acDialog
End Sub
Private Sub cmdDataEntryBoats_Click()
DoCmd.OpenForm "frmBarcoInfo", , , , , acDialog
End Sub
Private Sub cmdClose_Click()
DoCmd.CloseDatabase
End Sub
Any suggestions out there on what it is that can go wrong here? Even to me, this is very simple straight forward VBA code to open up a form, nothing more.