MartyConnelly
martyconnelly at shaw.ca
Tue Dec 7 02:27:42 CST 2004
A couple of other ways around this. You don't want to create a certificate and place in user certificate cache. It is very messy with makecert.exe Get your network guy to change the following registry settings of the following key, should help you change the security level of the macro in Access 2003. He should be able to change this globally across the network for each client PC, there is even a way to do this from Access VBA code using WMI with proper network permissions. HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Access\Security\Level If the value is 1, then the macro security of Access 2003 is set to low. If the value is 2, then the macro security of Access 2003 is set to medium. If the value is 3, then the macro security of Access 2003 is set to high. WARNING: If you use Registry Editor incorrectly, you may cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that you can solve problems that result from using Registry Editor incorrectly. Use Registry Editor at your own risk. Or You could also put this vbs code in a file to execute in a user's shortcut. Just create .vbs file and add to desktop shortcut. You can create a VB script file with this code and start your app using this from a shortcut. (Code is from an MS MSDN article) http://support.microsoft.com/?kbid=235422 This will have problems if vbscript disabled or you are using mdw security add to file MyMDB.vbs Const cDatabaseToOpen = "C:\<FileToOpen>.mdb" On Error Resume Next Dim AcApp Set AcApp = CreateObject("Access.Application.11") If AcApp.Version >= 11 Then AcApp.AutomationSecurity = 1 ' msoAutomationSecurityLow End If AcApp.Visible = True AcApp.OpenCurrentDatabase cDatabaseToOpen If AcApp.CurrentProject.FullName <> "" Then AcApp.UserControl = True Else AcApp.Quit MsgBox "Failed to open '" & cDatabaseToOpen & "'." End If John W. Colby wrote: >How do I turn off Access silly security warning ("you are about to open a >file that can eat your mother, rape your women and kill your children, are >you SURE you don't want to download..." > >Why do we have to go through this stuff? > >John W. Colby >www.ColbyConsulting.com > >Contribute your unused CPU cycles to a good cause: >http://folding.stanford.edu/ > > > > -- Marty Connelly Victoria, B.C. Canada