How to programmatically disable the "Security Warning" screen?

accesser

Registered User.
Local time
Today, 20:54
Joined
Mar 17, 2003
Messages
54
How can I, by using the VBA, disable the "Security Warning" screen which appears one I open the MDB file??

Please advise.

Thanks,
 
If it is 2003 (guess by MDB extension) the edit the registry:

Code:
HKLM\Software\Microsoft\Office\11.0\Access\Security
"Level"=dword:00000001
 
It is better to digitally sign the code than to turn off security like that. The security question is then only asked once and then all code with that signature is trusted.
 
How can I digitally sign the code that turn off security??

Please advise.

Thanks,
 

Users who are viewing this thread

Back
Top Bottom