Questions tagged [outlook-addin]

Outlook addins are self-contained programs that modify,extend or add functionality to Microsoft Outlook desktop client. Please use "outlook-web-addins" tag for questions regarding the new model of Outlook Add-ins, which are web-based and can run on Desktop, Web, and Mobile.

Outlook addins are self-contained programs that modify, extend or add functionality to Microsoft Outlook desktop client. They are either COM addins or VSTO addins.

These addins are typically written using tools:

  1. Visual Studio
  2. Visual Studio Tools for Office
  3. VB6

Visual Studio 2013 prior editions provide project templates which can be used to create application-level add-ins for Microsoft Outlook. You can use add-ins to automate Outlook, extend Outlook features, or customize the Outlook user interface.

Links:

4457 questions
1
vote
1 answer

get message id of sent item from exchange in cache mode in outlook

I am getting message id (using propertyaccessor) in outlook for microsoft exchange emails for sent items if not using cached mode. But, in cached mode, it is empty. How to get it in cached mode ?
user2349115
  • 1,288
  • 2
  • 17
  • 34
1
vote
1 answer

How to reach formRegion_FormRegionInitializing runtime?

Hello I'm trying to show/hide formRegion in outlook 2007 at Runtime. I have it showing/hiding with e.Cancel in FormRegionFactory_FormRegionInitializing, but it only refreshes when users selects another email. How do i reach event at runtime or there…
Buggy
  • 135
  • 9
1
vote
1 answer

How do you display buttons in the Outlook Quick Access Toolbar using XML

I've created a new Outlook 2013 addin C# VSTO project in VS 2012. I've added an XML file to customise the ribbon to add a new tab with 2 existing buttons. But I can't make buttons appear in the Quick Access Toolbar (QAT). Below is the XML I've…
m_collard
  • 2,008
  • 4
  • 29
  • 51
1
vote
2 answers

Addins can't capture calendar event on Outlook 2010 32bit

As guidance on internet, I wrote an example addin to capture calendar(appointment) add/remove/change event, this is my code: private Outlook.Folder mOutlookFolder = null; private Outlook.Items mItems = null; private void…
kairen
  • 235
  • 3
  • 13
1
vote
2 answers

Open a Outlook ribbon control programatically

I am working on a C# Office COM Addin that has an adjoining form region that is associated with the Appointment message class. I am trying to open the Recurrence toggle button on the ribbon through code. I've tried Office.CommandBars interface and…
Insane
  • 654
  • 10
  • 18
1
vote
2 answers

Resize Outlook Form Region

When I found out that I couldn't control the expanding/collapsing of the form regions, it made me sad. I decided to look into controlling how much the form pops out. This has made me sadder still. It seems that while I can control the height, the…
Natzely
  • 706
  • 2
  • 8
  • 27
1
vote
4 answers

Outlook Add-in Exception - How to check the type of Outlook.Item?

I have an Outlook 2013 Add-in, Outlook.MAPIFolder inboxFolder; Outlook.Items mailInboxItems; private void ThisAddIn_Startup(object sender, EventArgs e) { ... other code --- mailInboxItems = inboxFolder.Items; mailInboxItems.ItemAdd +=…
emily_bma
  • 301
  • 1
  • 15
1
vote
3 answers

How, can get the exact sent Email from Sent Items folder?

VSTO: Outlook 2007 Add-In Project. I have Sent an sampleEmail using a custom button in the Ribbon control. Now, How, can get the sampleEmail from Sent Items folder? I tried by using the Entry ID property. but that was not helpful after the Email is…
Spartan
  • 13
  • 2
1
vote
2 answers

VSTO Outlook Add-in - How to check if resources (COM) are NOT collected upon Shutdown()?

I have a VSTO Outlook 2013 Add-in that has been deployed. From an end-user's standpoint, is there a way to check if the add-in (COM) has not been deallocated / cleaned-up / closed correctly? From a developer's standpoint, how do I know what to…
emily_bma
  • 301
  • 1
  • 15
1
vote
1 answer

This add-in caused Outlook to start slowly

This message is shown on startup on Outlook 2013 for an Outlook AddIn developed using .Net 3.5. I have tried the suggestions in this post: This addin caused outlook to start slowly But without any luck. This is my initial method: private void…
Rafael
  • 1,099
  • 5
  • 23
  • 47
1
vote
2 answers

Outlook Interop: how to get deleted items folder or trash folder for each of the accounts

I'm trying to get all the Deleted Items or Trash folders for all the mail accounts in Outlook. I'm using Outlook Interop in C#, but I can only find the way to get the deleted items folder in the default mail account on MSDN:…
Leon Zhou
  • 633
  • 6
  • 20
1
vote
2 answers

Fastest way to move outlook emails to postgresql db using Npgsql

I have around 200 000 emails in outlooks public folders. Exporting to pst is a little bit fast but I don't know if psts are reliable. Also decoding it perfectly(with attachments) became a big headache. python lib doesn’t save attachments. Java lib…
user2349115
  • 1,288
  • 2
  • 17
  • 34
1
vote
1 answer

Is it possible to customize the Outlook Conferencing Add in?

I want to modify the labels of the outlook conferencing add in... e.g. I want to change the "Schedule a live meeting" text to say "Schedule my meeting". is it possible using VSTO? or I can create only new add ins using VSTO and not customize the…
ria
  • 819
  • 5
  • 19
  • 40
1
vote
3 answers

Outlook just hangs while debugging VSTO Addin

I am using Visual Studio 2013 and trying to develop a C# Outlook Add-In project for Outlook 2013 client installations at my enterprise employer. What could cause Outlook to not load completely, i.e. upon pressing F5 to Start Debugging my…
emily_bma
  • 301
  • 1
  • 15
1
vote
2 answers

How to access shared mailbox's Contacts Address Book in Outlook programmatically

I have four mailboxes in my Outlook 2013 client at work, my personal (Me@MyCompany.Com) and the other three are shared mailboxes for projects/teams I am on, for example, (Sales@MyCompany.Com), (ProjectFinance@MyCompany.Com), etc. I am using C# and…
emily_bma
  • 301
  • 1
  • 15