Creating and Handling CommandBars in multiple Inspectors of Outlook
The window which displays a single item (email/appointment/task) in the Outlook is called as an Inspector in Outlook. It is derived from the namespace Microsoft...
The window which displays a single item (email/appointment/task) in the Outlook is called as an Inspector in Outlook. It is derived from the namespace Microsoft...
To save the content of a mail item when it is sent, here is the procedure. Private WithEvents itms As Outlook.Items Private WithEvents SntFldr As Outlook.Folder...
Getting Rules from an exchange account configured in Outlook is pretty easy though many developers who is working on it for the first time may confuse with the ...
Seems to be a simple task. Right? But, not exactly. Say olMailItem is the object of Outlook.MailItem. From olMailItem.TO, olMailItem.CC and olMailItem.BCC, we g...
For getting Sender Email of a MailItem in POP3/SMTP accounts if pretty easy. We can get that by olMailItem.SenderEmailAddress. But, for Exchange Accounts, its ...
Here is the sample code for getting Account Name and Email Address from Outlook 2007 using VSTO. Dim olAccounts As Outlook.Accounts = Globals.ThisAddIn.Applicat...
Here are some useful links which I came across while searching for a solution to this problem. Cannot deploy Outlook 2003 add-ins created by VS2008 template Dep...