Thread: MS Access file
View Single Post
  #3  
Old January 11th, 2010, 05:49 PM posted to microsoft.public.access.tablesdbdesign
Zilla
external usenet poster
 
Posts: 16
Default MS Access file

On Jan 11, 8:15*am, John W. Vinson
wrote:
On Mon, 11 Jan 2010 07:33:37 -0800 (PST), Zilla wrote:
I have a file at work that the boss uses and now has given to me. Only
problem is the person who designed the access file to run from the
bosses desk top. When I try and run the file from mine it comes up
with an error shown below. I would like to know how I can change the
code so that I can run the file as well. This file is in a general
folder not locked. This is driving us both nuts can anyone help?


Thanks


Private Sub Form_Start() * * * * * * * *----------------- This part
is highlighted yellow.
* *Set db = CurrentDb
* *DoCmd.SetWarnings False
* *DoCmd.Maximize
* *Call Delete_Queries("*")
* *Call Delete_Tables("Temp*")
* *Me.Database_Name = DBName
* *strUser = UCase(GetUser)
* *Me.User = strUser
End Sub


Is this in Access 2007? If so, the database must be in a "Trusted Location" in
order for VBA code such as this to be allowed. It would appear that the
developer specified the boss's folder as trusted, but yours isn't.

Check the Access help for "Trust Center".
--

* * * * * * *John W. Vinson [MVP]


Sorry this is Access 2003. The Access database is in a folder anyone
can access. Once open and you click on a button it creates a report
and sends it to a specified folder that was locked. I managed to
change the path of the report to a new unlocked folder. The boss ran
the report and it placed the report in the new folder with no
problems. But when I try and open the access file to run the report I
receive the error I listed above.

So in the code the developer specified that the bosses desktop where
the shortcut sits as "Trusted Location"? Not sure just a thought I
had.
Any help is appreciated.