About Outlook Security Manager
Outlook Security Manager is a one-line programming tool to disable Outlook Security. With Outlook Security Manager you can easily bypass Outlook Security settings and avoid security warning, or alert, in add-ins and applications that automate Microsoft Outlook.
Add a line of code and get rid of pop-ups like "a program is trying to access e-mail addresses you have stored in Outlook" or "a program is trying to automatically send e-mail on your behalf".
Unlike similar tool, Outlook Security Manager doesn't transform OOM and CDO calls to Extended MAPI calls and doesn't make development more complicated with its own special objects. It just implements one object with three properties that enable or disable Outlook Security Settings separately for OOM, CDO and SMAPI.
Outlook Security Manager supports Visual Basic .NET, C#, C++ MFCL/ATL/.NET, Visual Basic 6, Delphi, VBA, Word MailMerge, Excel MailMerge, etc. All Outlook versions and service pack, including Outlook 2000, Outlook 2002 (XP) and Outlook 2003 are supported. Read more on http://www.add-in-express.com/outlook-security/
Code examples:
- Visual Basic .NET Dim SecurityManager As New AddinExpress.Outlook.SecurityManagerSecurityManager.DisableOOMWarnings = TrueTry
- Any action with protected objects such as contacts or items...
FinallySecurityManager.DisableOOMWarnings = FalseEnd Try
- Visual Basic 6, VBA, VBScript OlSecurityManager.DisableOOMWarnings = TrueOn Error Goto Finally
- Any action with protected objects ...
Finally:
OlSecurityManager.DisableOOMWarnings = False
- Delphi OlSecurityManager.DisableOOMWarnings := True;try
- Any action with protected objects ...
finally
OlSecurityManager.DisableOOMWarnings = False;end;.
Changes in this version:
ADDED: Support of Borland Delphi 2006. Support of Visual Studio 2005. ALTERED: Automatic initialization of the Simple MAPI sub-system when using the DisableSMAPIWarnings property in case it hasn't been initialized yet.System requirements:
.NET Framework 1.X; VS.NET 7.X; Delphi 5,6,7,8,2005; Visual Basic 6; VBA; VBScript; C#; C++; VB.NET( By Afalina Co., Ltd. - Outlook Security Manager Publisher )