Disable Microsoft Access 2007 Security Warnings (Macro, Office 2007)
Posted by Anup SaundDec 14
Disabling Security Warning Box
The easiest way to do this is to add a registry key to turn VBA Warnings Off:
1. Open Notepad
2. Paste in:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security]
“VBAWarnings”=dword:00000001
3. Save as filename.reg
4. Run filename.reg, and say YES when it asks if you want to add the registry key.
As you may have guessed, you can add the same DWORD to the other directories like WORD, EXCEL etc.
Version 12 is for Office 2007, but this also works with 11.0, 10.0 versions of OFFICE.
Enjoy Hacking!













2 comments
Comment by Justin Fitzgibbon on September 18, 2009 at 12:08 am
Also
HKLM\SOFTWARE\Microsoft\Jet\4.0\Engines\SandboxMode=2
HKLM\SOFTWARE\Microsoft\Office\12.0\Access\Security\Level=1
HKCU\SOFTWARE\Microsoft\Office\12.0\Access\Security\Level=1
You need to restart for the change to take effect
Comment by Anup Saund on October 31, 2009 at 10:03 pm
Thanks Justin