1
vote
1answer
39 views

Inconsistent Outlook Addin Event Firing

On my development machine I have the FormInitializing and FormShowing events firing before RibbonLoad. I created a setup package in VS 2010 and installed on a vanilla Windows 7 Ultimate with Outlook ...
0
votes
1answer
24 views

Why AddressEntry.Members is deprecated?. What is the alternate method for the same?

I am working an Outlook addin in C# recently. For several times I meet "internal error" exception when calling AddressEntry.Members property. (AddressEntry is the class in ...
0
votes
1answer
51 views

Is it possible to find the time an email was first modified/read in Outlook?

I am currently working on a very simple C# add-in for Outlook that will iterate specific folders and output specific details about messages to a CSV file. I have that part complete, however I was ...
0
votes
1answer
208 views

Outlook Add-In can't be installed on a machine after installing Office 2013

I have implemented an Outlook add in visual studio 2010 using Outlook Add in template and VSTO, I created an install for it using MSI installer (created in visual studio 2010).. I am able to install ...
2
votes
1answer
161 views

Disabling an Outlook Addin programmatically

I am developing an Outlook Addin which authenticates with a web service to fetch data from a database and to store data in a database. When the addin starts it queries the web service to figure out if ...
1
vote
1answer
188 views

Catch Outlook events when attaching/sending a file from another application

I'm trying to create an add-in for Outlook 2007/2010 to modify recipients of newly created email messages. Everything works fine if the user creates a new email message inside Outlook (I'm using the ...
1
vote
1answer
386 views

Accessing properties of Microsoft.Office.Interop.Outlook.MailItem

I am working on an Outlook add in application, and I am unable to properly access properties of the MailItem object. For example, if I type an email address in the "To" box, the following code does ...
1
vote
0answers
50 views

How to use Outlook interpo to update server and logon information

I need to create an application that will allow me to change server information and credentials on all pop3 accounts in Outlook. I was able to pull something out like this: Outlook.Application oapp ...
0
votes
1answer
2k views

How to open Outlook's new mail window with prepopulated attachement by programmatically using C#?

I need to open a new outlook email window with pr-epoulated attachment when user click some button or link in my application. My programming language is c#
1
vote
1answer
103 views

Can't access a reference to a new mail window in Outlook 2010

I'm building my first plug-in to Outlook and according to the code here, I'm supposed to add the following code to the event handler. new Microsoft.Office.Interop ...
0
votes
2answers
866 views

Define custom actions for Outlook “Quick Steps” in an add-in

I would like to create a custom "Quick Steps" action for an Outlook 2010 Add-In. Quick Steps seems like a perfect structure for what I'm trying to accomplish: I need to take an action based on the ...
0
votes
2answers
183 views

How to check existence of a property in Outlook Interop?

I am trying to determine sender of a email in Outlook 2007 and above. In Outlook 2010 you have a Sender property on the MailItem object while in Outlook 2007 you have to do it differently like ...
0
votes
2answers
447 views

Attach binary data to Email attachment

I am trying to attach a binary data retrieved from SQL server to an email as attachment using VB.net in the office addin. I am able to add attachment if I specified the file path and file name, but ...
1
vote
1answer
468 views

Programmatically encrypt Outlook email using Inspector

I'm using C# with Outlook Object Model (Redemption is not an option for me due to licensing) and I'm having difficulty programmatically encrypting an email message before sending it. I can ...
1
vote
2answers
327 views

Office 64 Bit & IE 32 Bit & VBScript

I have installed office 64 bit and there is a html file which is having a vbscript that calls CreateOjbect method. In IE 32bit i am getting error "ActiveX object cannot create object" But in IE 64 bit ...
2
votes
1answer
768 views

Handling attachment events in an outlook add-in

Is anyone aware of a technique I could use to override someone opening an email attachment within an outlook add-in? Essentially what I'm being asked to do, is for certain attachments, to change the ...
0
votes
1answer
380 views

How to Program Outlook 2007 Add-In with Multiple Mailboxes

I'm trying to figure how to write a simple add-in for Excel 2007, but one that only interacts with one of my mailboxes. Currently I have two email addresses coming into my outlook, each in a specific ...
3
votes
1answer
848 views

Outlook Add-In and Disabling/Hiding Custom Menu Items

I've created an Outlook Add-In, and I'm using an XML ribbon configuration file to specify a new tab, and button. The button loads into a new tab within outlook. Now sometimes, based on user we want to ...
1
vote
2answers
2k views

80040154 Class not registered ERROR in Outlook 2010 Add In

I am using Visual Studio 2010 to create a Outlook 2010 Add In. I try to create a new Outlook AppointmentItem to work with thinking that I can add it to the calendar eventually. ...
0
votes
1answer
1k views

Custom Properties against an Outlook Interop MailItem

I am adding custom properties to a Microsoft.Office.Interop.Outlook.MailItem object like so: Public Const SharePointSiteUrl As String = ...
0
votes
0answers
276 views

UCOMIConnectionPointContainer.Advise giving error in VSTO (pecified cast is not valid)

Project is Outlook Addin. Original project was created by using interop.Outlook. Recently we have converted this project to VSTO. However, the below code is giving an error. Now we are using ...
3
votes
1answer
2k views

Sending Outlook 2007 Meeting Request with HTML Body

I know that Outlook.ApointmentItem.Body only supports plain and rich text formats. But my requirement is to send the Appointment with a Html body. Currently I am saving the ApointmentItem as an ics ...
0
votes
2answers
1k views

Is it possible to rename Outlook Category programmatically?

We are developing Outlook 2007 add-in. For testing outlook category renaming I've added the following code block var session = Application.Session; var categories = session.Categories; var ...