Outlook addins are self-contained programs that extend or add functionality to Microsoft Outlook.

learn more… | top users | synonyms

5
votes
0answers
431 views

Alternatives for replacing text selection under Outlook with custom HTML code

I need to replace an user selection while editing an Outlook e-mail with my custom HTML code. I tried two approaches: Using the Clipboard In HTML mode. Getting the Word.Range from the ...
4
votes
0answers
57 views

Enable shortcut keys on outlook form region

I am creating addin for outlook. I am using outlook form region of vsto as adjoining. The issue is in my outlook form region shortcut keys are not working. I need to work tabs and enter keys on my ...
3
votes
0answers
223 views

Outlook addin in C#: what happens between Forward and Open events?

In Outlook addin I have two event handlers registered, for MailItem.Forward and MailItem.Open When I receive Forward, I am getting an object parameter that references a new MailItem object created ...
3
votes
0answers
426 views

Anyone have a workaround to bug with save and send with outlook add in?

I'm not sure if this can be fixed programatically but I'm having the following issue with an outlook addin. To reproduce: 1) Create a new Outlook add in 2) Add a ribbon to the solution 3) Set the ...
3
votes
0answers
431 views

Outlook Add-in (VSTO 4) - VS2010 auto-referencing older VSTO assembly when adding new Form Region

I have an Outlook add-in project that was first developed in Visual Studio 2008, using VSTO 3.0 and targeting Outlook 2007. This project had a couple of custom Form Regions that added functionality to ...
3
votes
0answers
348 views

Custom email icon outlook add-in

I would like to show a very small modifier icon on email messages that are displayed in outlook using my outlook plugin. Despite a lot of searching, I am unable to find any sample code to do this. Is ...
3
votes
0answers
514 views

Changing any Form Region/Ribbon property breaks Visual Studio editor

I have a problem with Visual Studio 2010 and Outlook Addin 2010 project (.NET 4 target). I've added a form region to my project and then I've changed Localizable property to true. Now if I close my ...
3
votes
0answers
814 views

Outlook modify and Save() MailItems - slow

I need to modify many MailItems in Outlook 2007. I need the mails to immediately refresh in the main Outlook grid - the only way to do this I found is to call MailItem.Save(). foreach (var item in ...
2
votes
0answers
146 views

Visual Studio/TFS extensibility: why does DocumentService give me an InvalidCastException?

I'm writing an addin for Microsoft Outlook 2007. My goal is to open a work item in a Visual Studio 2010 instance, which I know exists and has the packages loaded for TFS 2012. The following code works ...
2
votes
0answers
159 views

In outlook 2010 How to provide a hyperlink to an email attachment “B” attached inside another email “A” from within the body of email “A”

In outlook 2010, "I attach an email "B" as an attachment inside an email "A". Now if I want to provide a hyperlink to this attachment email "B" from within the body of email "A", how do I do it ? I ...
2
votes
0answers
180 views

create shared code for Outlook 2007 and 2010 VSTO 4.0 add-in with Visual Studio 2010

I'm creating an Outlook add-in that uses .NET 4.0 VSTO, Visual Studio 2010 that targets Outlook 2010/2007. I will be creating a different Ribbon so will need to create 3 projects: - 2010 ribbon - ...
2
votes
0answers
106 views

Cancellation of Outlook AppointmentItems

I have a strange issue regarding the cancellation of an Appointment/Meeting in a C# Add-In. Of course it is possible that I do not handle the events correctly. This is how I do it: Register Event ...
2
votes
0answers
229 views

How I can get embedded attachments out of an Outlookmailitem? -> Get Attachments out of *.msg files

at the moment I am delveoping an Outlook-addin (Outlook 2007) in C#, and I need to save the embedded attachments (usually images in BMP format). I meen the attachments which are embedded by pasting ...
2
votes
0answers
82 views

c# outlook plug-in, add column to search result

I am trying to write a outlook plug-in that adds a new column to the search result, which shows the entire path to the folder of the found e-mail. Is it possible to add a new column to the existing ...
2
votes
0answers
146 views

How to use “Format Text” tab on ribbon and context menu for VSTO RichTextBox

I've added a RichTextBox control to an Outlook Form Region as in this article. The problem is that there are no controls to edit the text size, color, etc. I just figured that the default context menu ...
2
votes
0answers
224 views

Office Ribbon UI XML - How do you create an In-Ribbon gallery rather than a dropdown button?

I am trying to integrate a custom .net control into several Microsoft Office 2010 applications. I have created my Ribbon UI in XML. But have no idea how to replicate an In-Ribbon Gallery control. ...
2
votes
0answers
258 views

C# Outlook AddIn - Cannot seem to access shared mailbox

I've written a add-in for outlook 2007 in .NET 4.0, C#. The addin simply does some manipulation to the subject for any incoming email. This add-in works in my 'test environment', which is basically ...
2
votes
0answers
214 views

Outlook add-in and WPF window

I am writing a simple Outlook addin using addin Express. This is for 2007 and 2010 . I have a wpf window I want to launch modally when a ribbon button is pressed in OL . The code I have right now ...
2
votes
0answers
193 views

How to deploy extensibility.dll for Outlook 2003 plug-in

I have to deploy Outlook 2003 COm plug-in. I have .Net4.0 framework and PIA for office 2003 installed on my machine. While registering the plugin using RegASM.exe myplugin.dll , I am getting error ...
2
votes
0answers
177 views

How to retrive fullpath of .msg file from outlook addInn

I open .msg file and I need to know the full path or at least filename of the file from OutLook AddIn by c#: MailItem item = null; Inspector insp = Application.ActiveInspector(); if ...
2
votes
0answers
204 views

Customizing Business Contact Manager 2010?

Questions: Is it possible to add an auto-increment field to a BCM form? I need to have an auto generated identifier for each Opportunity. Is it possible to track emails on an Opportunity level? I'm ...
2
votes
0answers
1k views

Get all mails in outlook from a specific folder

I would like to get all mails in outlook from a specific folder: My folder structure: I find this Code to get all mails in outlook inbox folder (not the inbox in picture!): Outlook.Application ...
2
votes
0answers
82 views

Changing presence context menu behavior in Outlook

I am trying to change the behavior of the default context menu that comes when Outlook is integrated with Communicator 2007. Specifically I am trying to change the action when a user right clicks a ...
2
votes
0answers
384 views

Outlook Add-in targeting 2007 & 2010

I have an Outlook Add-in that I have developed for Outlook 2007. I am working on having this add-in work on Outlook 2010 as well. My add-in is an adjoining region on the appointment/meeting request ...
2
votes
0answers
672 views

Outlook Crashes with Event ID 1000

We deployed a VSTO addin for outlook 2003. After installing the addin one of the user's outlook crashes when a contact is opened, i.e, when ItemProperties of the contact are read.Some theses ...
2
votes
0answers
212 views

Grabbing values that came to Outlook from Exchange

I have written a VSTO add-in that needs to get the an appointment information from the exchange server. On exchange (Outlook Web Access) I change a subject line of an appointment. When I see that ...
2
votes
0answers
814 views

How would I go about implementing auto-hide on a custom task pane?

I'm creating an Outlook 2007 add-in using Visual Studio 2008 and C#. I have my custom task pane along with my usercontrol docked to the bottom of the main Outlook window. I'm trying to implement ...
1
vote
0answers
17 views

Debugging IE when shown within an Outlook plugin

I am working on a web app in which part of will be shown inside Outlook Explorer using an Outlook plugin that opens an IE window within Outlook. I've had no problems with users that have IE 7,8 or 9 ...
1
vote
0answers
32 views

Show Progress Bar in Outlook Addins

i m developing a Outlook Add ins using C#. hare i extract all the attachment(in doc or docx) which is attach with selected mail. i have create a button on tool bar using add in.when i click on button ...
1
vote
0answers
49 views

Object reference not set to an instance of an object. - Outlook 2010 AddIn ContextualTab Button

I am having trouble iterating through the list of selected attachments in my Outlook 2010 Addin Project. Here is the ribbon1.xml <customUI ...
1
vote
0answers
133 views

Creating Follow up email Reminder in Outlook Shared Add-ins

I am using VS 2010 , Dot Net Framework 2.0 . I have created a project in Extensibility->Shared Add-ins for Outlook. I want to create a follow up email reminder using Com Add-in can any body help me ...
1
vote
0answers
49 views

Set focus to the subject field in “new message” form using C# Add-In for Outlook 2007

I just need to know how to set focus for the subject field of the "new message" form once it is opened.. Can this be achieved ?! Many thanks for your help.
1
vote
0answers
17 views

Check to make sure only one inspector is open

I'm writing an VSTO Outlook Addin and I open up my own inspector (form) to have the user put in information. How can I check to make sure an instance of the form isn't loaded before opening another?
1
vote
0answers
185 views

Programmatically Using Track Changes Comments in Outlook 2013 Add-in

I've developed a VSTO Outlook add-in that uses the track changes comment functionality of Word to highlight certain keywords in emails. This works great in Outlook 2010, but not in Outlook 2013. When ...
1
vote
0answers
18 views

How to get notified when the message body is changed in an outlook addin?

I have an outlook add in that I want to be able to have a word counter or a notification to the user when the message body of the mailitem reaches a certain amount of words. Is there any event ...
1
vote
0answers
44 views

deployed outlook addin 2007 not loaded

This is my first addin project and I have a huge problem. I created an addin project and it's working fine on the development computer, but when I deployed it to the test computer the addin doesn't ...
1
vote
0answers
37 views

Is This Possible through an Outlook Addin

I need to create an Outlook(2010) Addin which does the following things: -If an email is Dragged and dropped into Windows explorer (not within Outlook Folders) it Changes the File Name to the ...
1
vote
0answers
35 views

C# - Is there anyway to add userdefined field to sort panel in View ribbon of Outlook?

I have added a userproperty to an outlook folder and it can be displayed as a column in email list when the folder is selected. Is it possible to add this field in to the "Sort group"/"Arange by" in ...
1
vote
0answers
162 views

CRM 2011 for Outlook Emails - How Does The Regarding Link Work?

This question specifically pertains to the CRM 2011 for Outlook client. We have emails that are sent via Workflows to certain users. All of the email messages have the Regarding field set when they ...
1
vote
0answers
17 views

How to Iterate through a conversation in Oulook?

Am building a outlook addin that will set category to an email , I have a special scenario where in If i match a subject i am looking for , i need the entire conversation category to be set i.e. the ...
1
vote
0answers
93 views

Outlook ribbonbuttons not displaying correctly in Outlook addin

Code first: Programmaticaly adding button to a ribbonbar: for (int i = 0; i < titles.Length; i++) { RibbonButton button = this.Factory.CreateRibbonButton(); button.Visible = false; ...
1
vote
0answers
150 views

Get Outlook folder details using LINQ

I wanted to get Outlook folder details(User Created Outlook Folder Names) using Linq query,There's no any error but expected result not achieved, Some example in this site but it doen't get my ...
1
vote
0answers
111 views

Outlook 2007 contact item context menu

I want to customize contact context menu, I know that I have to do it using CommandBars approach. This approach is NOT very useful. How can I add two buttons programmatically when I click a contact ...
1
vote
0answers
127 views

Create additional calendar in MS Outlook 2010 programatically without MS Exchange account

If you're using MS Outlook with MS Mail Exchange account, you're able to either share your calendar to other or to be shared by other. Otherwise, if you're using it with any other type of account ...
1
vote
0answers
151 views

“Cannot import the following key file” error when build outlook add-in project

Error Message: Cannot import the following key file: . The key file may be password protected. To correct this, try to import the certificate again or import the certificate manually into the ...
1
vote
0answers
203 views

Customize Calendar Appointment Preview (popout) in Outlook 2013 with c#

Is there any way to customize (or replace) the box that displays details of a particular appoint as you scroll over it in the Calendar Explorer of Outlook 2013. I am trying to display one of the ...
1
vote
0answers
21 views

Outlook contacts picture from SQL

we are using HR system with photos of each employee. The photos are saved in MS SQL as Blob. Is there a way to import the picture from SQL to Outlook contacts? Or directly into Exchange (2003)? The ...
1
vote
0answers
372 views

C# Outlook 2010 Addin - AppointmentItem.ItemProperties.Add Exception

I am working on an Outlook add-in that adds a Form Region to IPM.Appointment message classes. When this region is showed, it will first add a few properties to the AppointmentItem. ...
1
vote
0answers
51 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 ...
1
vote
0answers
113 views

Change connection string when install Outlook Add-In

I have an outlook addin(created with VS 2010 and C#) that it's connected to a database server but I'm facing a problem, when I'm debugging my app I have the config file which contains the actual ...

1 2 3 4 5 7