Ran into a major issue today with MS Access 2003, or at least the .ADP projects.
I have a .ADP database that has a Stored Procedure as its record source. Once the user selects from the first drop down list box, many of the fields on the form are automatically filled out, and then the record is saved by using...
DoCmd.RunCommand acCmdSaveRecord
This works just fine in MS Access 2000.
With the very same file (the 2000 version) and also on a Converted version, I am receiving an error through MS Access 2003.
As soon as the acCmdSaveRecord code is run I receive the following error...
Run time error '16389'
Reserved Error
[End] [Debug] [Help]
I then select [Debug] and it takes me to the acCmdSaveRecord line of code.
In the code window, when I click [>] to run the code, I get the error...
Run time error '2046'
The Command or Action 'SaveRecord' is not available now.
[End] [Debug] [Help]
Has anyone run into this, and if so is there an easy work around?
Thank you,
T.J. Bernard
I have a .ADP database that has a Stored Procedure as its record source. Once the user selects from the first drop down list box, many of the fields on the form are automatically filled out, and then the record is saved by using...
DoCmd.RunCommand acCmdSaveRecord
This works just fine in MS Access 2000.
With the very same file (the 2000 version) and also on a Converted version, I am receiving an error through MS Access 2003.
As soon as the acCmdSaveRecord code is run I receive the following error...
Run time error '16389'
Reserved Error
[End] [Debug] [Help]
I then select [Debug] and it takes me to the acCmdSaveRecord line of code.
In the code window, when I click [>] to run the code, I get the error...
Run time error '2046'
The Command or Action 'SaveRecord' is not available now.
[End] [Debug] [Help]
Has anyone run into this, and if so is there an easy work around?
Thank you,
T.J. Bernard