VB.Net and Outlook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have written a VB.net exe which trys to add items to calendars, I need
this to work without the stupid security message popup.

How do I tell outlook to trust this app and allow it to use its object model
without these messages appearing?
 
Martin,
To avoid the Outlook security prompts its generally easiest to create a
properly constructed COM-Addin for Outlook 2003. There are other methods
available for other versions of Outlook...

See:
http://msdn.microsoft.com/library/d...dc_ol2003_ta/html/odc_olsecnotescomaddins.asp

Further info can be found at:
http://www.slipstick.com/dev/ol2003problems.htm
http://www.slipstick.com/outlook/esecup/admin.htm


For a list of resources on using Outlook from VB.NET & C#:
http://www.microeye.com/resources/res_outlookvsnet.htm

For help & information on programming Outlook (mostly VB6, some VB.NET):
http://www.outlookcode.com/

Some samples of using Outlook with VB.NET:
http://msdn.microsoft.com/office/de...y/en-us/odc_OL2003_ta/html/odc_OLOMwVBNET.asp

A sample COM Add-in for Outlook written in VB.NET:
http://msdn.microsoft.com/library/d...n-us/odc_OL2003_ta/html/odc_OLWhatsNew2k3.asp

Hope this helps
Jay
 
Back
Top