A accesser Registered User. Local time Today, 20:54 Joined Mar 17, 2003 Messages 54 Nov 7, 2010 #1 How can I, by using the VBA, disable the "Security Warning" screen which appears one I open the MDB file?? Please advise. Thanks,
How can I, by using the VBA, disable the "Security Warning" screen which appears one I open the MDB file?? Please advise. Thanks,
D Dairy Farmer Registered User. Local time Today, 22:54 Joined Sep 23, 2010 Messages 244 Nov 7, 2010 #2 If it is 2003 (guess by MDB extension) the edit the registry: Code: HKLM\Software\Microsoft\Office\11.0\Access\Security "Level"=dword:00000001
If it is 2003 (guess by MDB extension) the edit the registry: Code: HKLM\Software\Microsoft\Office\11.0\Access\Security "Level"=dword:00000001
G Galaxiom Super Moderator Staff member Local time Tomorrow, 05:54 Joined Jan 20, 2009 Messages 12,895 Nov 7, 2010 #3 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.
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.
A accesser Registered User. Local time Today, 20:54 Joined Mar 17, 2003 Messages 54 Nov 8, 2010 #4 How can I digitally sign the code that turn off security?? Please advise. Thanks,
boblarson Smeghead Local time Today, 12:54 Joined Jan 12, 2001 Messages 32,059 Nov 8, 2010 #5 accesser said: How can I digitally sign the code that turn off security?? Please advise. Thanks, Click to expand... see here for how to digitally sign the project.
accesser said: How can I digitally sign the code that turn off security?? Please advise. Thanks, Click to expand... see here for how to digitally sign the project.
K Karen831 Registered User. Local time Today, 12:54 Joined Jun 5, 2007 Messages 26 Dec 2, 2010 #6 Thanks - that worked great!