Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

2007 Access runtime 1

Status
Not open for further replies.

Domino2

Technical User
Jun 8, 2008
475
GB
I have a database (.mdb) that I want to put on another pc to run. They do not have Access installed. I installed the 2007 runtime as 2003 no longer around. It works, however it will not open until the user acknowledges its safe. How does one get round the problem on a non 2007 pc? Thanks
 
you will need to add the database as a trusted location.

I use a small reg file to do this, just copy the code below to a notepad document and save it with a .reg extension

Code:
Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security\Trusted Locations\Your Db Name]
"Description"="Your Db Name"
"Path"="C:\\dir1\\dir2"

once saved, run this file on any machine that you wish to use your database, this will set it permanantly as a trusted Db
 
Many thanks Brad. So fust to confirm, the code you gave can be saved as any name providing it has a reg extension. If I add the db name as a straight name ie Best.MDB with no speech marks around it, and I just run it then that's it.
If that's the case then thats good, as I don't want to mess about with regedit or get in a mess with an IT department.
 
the code provided is typed (copied) into a notepad file, save the notepad file as filename.reg and have the users run that.
It will insert the details into the registry for you, without you having to go into reg edit.

After that you can just run your mdb/mde file as normal and you will not get the 'trusted location' message
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top