I've been left with an application developed by another developer. The application is suppose to look through an Outlook address book and parse out some information. When I run the application in debug mode (F5), I'm prompted by the outlook security asking me if I want to allow or disallow the application from gaining access to Outlook. However, when I run the application in run without debug (ctrl+F5), I get the following error: System Error - System.Security.Permissions.SecurityPermission. Running the exe through cmd generates the same error.
The security error seems to be generated after this line of code:
Dim oApp As Outlook.Application = New Outlook.Application
Any explanation to why it would work in debug but not in run?
Thanks for all your help!!
The security error seems to be generated after this line of code:
Dim oApp As Outlook.Application = New Outlook.Application
Any explanation to why it would work in debug but not in run?