Reputation: 40
I am trying to make an exe file for an access database using software SSE Setup for installation.
The exe file successfully runs and installs the file on a different PC, but when I run it I get an error "Your database or project contains a missing or broken reference to the file UTILITY.ACCDA'.
What is it that needs to be changed? I have tried renaming file as mentioned in this link .
I have made the Access file on Access Office 365 and am trying to run on a machine which has lower version of Access installed
Please assist how to have my access database working
Upvotes: 1
Views: 3196
Reputation: 32682
UTILITY.accda is one of the add-ins that's present in Access by default, and is used internally for things like tooltips, the Zoom form that you can popup in the query folder, and more.
Apparently, your database has a reference to it. Perhaps it uses the BuilderZoom
function to make zoom boxes pop up?
You can do three things:
SysCmd(acSysCmdAccessDir)
Upvotes: 1
Reputation: 55981
Go to menu Add-ins and check that the Utility isn't added.
Then open a new database and import all objects from your current application, except the utility project.
Of course, if your application actually uses the utility add-in, locate it in your Access program folder and include it in the setup.
Upvotes: 0