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

learn more… | top users | synonyms

1
vote
1answer
98 views

does not contain a definition for 'Form' ? Outlook Add-in

Recently I' am working on an add-in with c# for Outlook 2010 in Visual Studio 2012 . I developed a custom Form region which contains simple textboxes and a button. In Button_click method I' am taking ...
0
votes
1answer
135 views

Restrict to list Folders under Inbox

In here comes every folder details.Now I wanted to Restric it only list "Folders under Inbox" Actually now i wanted to list folders under inbox.(I created folders under inbox.I don't want to show ...
0
votes
2answers
97 views

Getting Cross-thread operation Exception in Outlook add-in

Im developing an Outlook-2010 addin. The Main addin class is launching an Asynchronous task like this and declaring an static event to suscribe from other form: int ProcesadosArchivado = 0; ...
1
vote
0answers
143 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
1answer
200 views

Get list of all Outlook Custom Folders

I'm writing outlook addin for Outlook 2010,Now i wanted to Get All Outlook Custom Folders ( Custom folders means folders created by users.) I saw some helpful post in Stackoverflow,I tried that ...
0
votes
1answer
159 views

How to get universal outlook mailitem ConversationID for one email chain replied from different users

I am developing an OUTLOOK 2010 addin in C#. This addin will create activities based on conversation. For example, one user create new email, others reply,forward or CC, treat this email chain as one ...
0
votes
1answer
228 views

C# Outlook add-in get selected emails

I want to get all selected emails in my Outlook 2010 add-in. I found this MSDN tutorial, but I am a beginner at C#, and I don't quite understand this line of code: Object selObject = ...
0
votes
1answer
128 views

Custom Ribbon in Outlook VSTO goes 'missing' if not in VSTO project's root?

I have a bare bones VSTO Outlook Add-in. I've added an empty Ribbon via this article and it works. The Ribbon.cs and the Ribbon.xml files currently reside in my project's root but if I move them to ...
0
votes
1answer
52 views

Make a button in the body of the email to send info back to the sender of the email

I recently started using MS Outlook 2007 but am having trouble understanding how I could implement something specific. To get to the point, this is what I'd like to know how to do: How could I ...
0
votes
1answer
175 views

How to pass values through a WCF Service in a ASP.NET Website

I am working on a Outlook Addin for our Website. I want to pass the selected date, time and subject from outlook calender to our website which loads in a webcontrol inside Outlook. The Webservice is ...
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
89 views

Failed to access mail object MAPI from calling function

I'm going to access Outlook MAPI folder and get mail address.Here is my method public static string GetSenderEmailAddress(Microsoft.Office.Interop.Outlook.MailItem mapiObject) { ...
0
votes
0answers
109 views

Create Meeting Workspace outlook connected to Sharepoint 2010

I want to implement the c# code for the following steps mentioned in this link. Link Its about creating a Meeting Workspace in sharepoint from outlook. I have access to EWS, and also have an ...
-2
votes
1answer
66 views

How to add a button/menu to the reply window of Outlook 2003

I know how to create a button, but I want it to be on the reply window or at least on every new mail item window (reply or new mail). I can't find any way to do that. Does it have anything to do with ...
5
votes
1answer
426 views

Deploying Outlook addin to a Citrix XenApp installation

I created an Outlook addin. It does nothing special, just adds a menu with one menu item. I followed the installer creation tutorial from ...
0
votes
1answer
27 views

Prevent editing appointments and tasks in outlook

Is it possible to prevent a user from editing appointments and tasks in Outlook. The tasks and appointments are synchronized using an addin we are developing. We want to make a first release, but we ...
1
vote
1answer
87 views

find for which account the email is received when it is a BCC Mail

I am having an outlook pst where email for "aperson@domian.com" account and "bperson@domain.com" account will be received. i need to process all new emails that received to "aperson@domian.com" ...
0
votes
1answer
471 views

Automatic email send/receive in Outlook

Is there a way to set up Outlook (2013) to automatically send/receive emails when it is activated? What you can do now is to intruct Outlook to periodically check the emails, and of course, it checks ...
-1
votes
1answer
176 views

access to Message-ID header in Outlook 2010 mail item?

i want to create Outlook 2010's add-in for send Message-Id Header of selected message to my application, how to access to Message-ID header in Outlook 2010 mail item?
0
votes
0answers
72 views

Outlook add-in for In-Late, Leave Early, and PTO events

I am developing outlook add-ins for a client which requires some dedicated event types like In Late, Leave Early, PTO, Unavailable for Outlook. Currently they just use Appointment to mark these events ...
0
votes
1answer
256 views

VbaProject.OTM deployment

I came by this page and was thinking about the best method to distribute my VbaProject.OTM file (located into %appdata%\Microsoft\Outlook\) to a bunch of ~30 users at my office. Is it better to simply ...
1
vote
1answer
192 views

How to read an rtf from a file and insert it into a body of an Outlook item?

I am attempting to write an Outlook Add-In that has functionality very similar to the insert signature feature of Microsoft Outlook. I best and most detailed thread I found discussing something ...
1
vote
3answers
260 views

OpenSharedItem for opening .MSG files showing Error in Outlook C#

I am using the following code to open the signed/unsigned Outlook messages and I display the content in WebBrowser control. Microsoft.Office.Interop.Outlook.Application app = new ...
3
votes
3answers
1k views

Outlook 2013 add-in with VS 2010

Sorry for asking such a stupid question, but i googled for about two hours and couldn't find an answer to my question: How can i develop an Outlook 2013 add-in? I have an add-in which was created in ...
1
vote
1answer
374 views

Add ribbon (tab) to contact form outlook addin

I am trying to add a ribbon/tab in outlook contact in C#. I added a ribbon and in its xml i have written following code. <tab idMso="TabAddIns" label="mySoftwareTab"> <group ...
0
votes
1answer
327 views

how to get embed image from current outlook email with c#?

I am developing outlook 2010 add-in with c#.net in visual studio 2010. I want to get embed image from current email ( not attached) in to my form region. how to get embed image from outlook email ? ...
0
votes
1answer
370 views

Event bindings not always happening during Outlook add-in startup

I'm developing my first Outlook 2010 add-in using C# and Visual Studio 2010. Thus far my project is going nicely. I have a custom tab in the ribbon, and it updates every time a new message is selected ...
0
votes
1answer
227 views

Can't remove contacts from an address book in Outlook 2010

I can add a contact to a address book but for some reason I can't remove it. The code I'm executing is as follows. String abName = "Name ofthe targetted address book"; Outlook.Folder addressBook; if ...
1
vote
2answers
521 views

How to set sender name in message sent using outlook 2010/13 ? <MAPI>

I've been fetching value of the user name from user's profile "PR_DISPLAY_NAME" and set the same value as sender in "PR_SENDER_NAME_X" property value. But it seems outlook 2010\13 always sets the user ...
0
votes
1answer
139 views

how to read email signature from current email in outlook add-in form region?

I am developing one form region in my outlook 2010 add-in with c#.net in visual studio 2010. I want to read signature of current-opened email. How can i read signature from email ? I tried to ...
2
votes
0answers
137 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 ...
1
vote
1answer
266 views

How to get the URL and credentials used in CRM for Outlook?

I've developed an add-on for Outlook connecting to a CRM server. While it works and does what it's supposed to, it'd be nice to automatize the installation process by omitting the configuration by ...
0
votes
1answer
33 views

Comprehensive installer solution for solution targetting multiple platforms

I am developing an Outlook plugin solution that involves the plugin itself and a windows application working in tandem. The plugin targets multiple versions of Outlook - 2007, 2010 and 2013. The ...
2
votes
2answers
276 views

Add to Message Ribbon in Outlook 2007

My organisation is using Office 2007 and we are looking to add a button on the email form that we could use to replace the default Send button. This would be to Send the email encrypted (by adding ...
0
votes
1answer
172 views

Outlook Add-in: Fetch attendees email address of selected meeting

I am developing a small Outlook add-in which will fetch all information about selected meeting and push this information to our in-house portal. Implementation is complete except RequiredAttendees ...
0
votes
1answer
175 views

Outlook add-in : programmatically perform an “advanced Find” on the “SelectNamesDialog”

In my Outlook Add-In I’m bringing up the SelectNamesDialog to select a contact set on GAL. I would like to perform an Advance Find in order to look for Example for contact of a particular Company (See ...
0
votes
1answer
360 views

Outlook 2010 Add-in not loaded after installation

I am new to outlook add-ins. I have developed one add-in to outlook in visual studio 2010 with c#.net for outlook 2010. I have developed form region and setup project also. It works perfectly when I ...
0
votes
0answers
106 views

How to connect Outlook 2010 with Sharepoint 2007 in C#

I'm trying to build an time logging application through sharepoint 2007. The Sharepoint app is able to sync with Outlook 2010 Calendar, allowing use to add task and event to their calendar. Then later ...
0
votes
1answer
52 views

How can I know my php session information in dot net application?

I have developed a website in php-zend with SQL server 2008r2 in which we can create requests. I am building an add-in for Outlook in asp.net with C# to create a request directly from email also. But ...
0
votes
1answer
48 views

Backstage view in outlook 2007

I am developing an outlook 2007 add-in which is based on an existing outlook 2010 plugin. I managed to get most of the features working, because most of them were backwards compatible. However there ...
0
votes
0answers
52 views

Outlook2010 Add-In created in C# shows publisher (none) in Outlook Options > Add-Ins > [click on add-in]

When I go to File>Options>Add-Ins and click on my add-in the publisher is set to (none). However if I look it up in the Control Panel, the publisher is displayed and set correctly. I have tried ...
1
vote
1answer
287 views

Where is Trust Centre for Outlook 2003

I've got an Outlook addin which is disabled indicating that it is not in the Trusted source list. I found the Trust Centre for outlook 2010 but couldn't find where it is located for outlook 2003. ...
0
votes
0answers
55 views

Outlook2010 Add-In created in C# shows publisher <none> in Outlook Options > Add-Ins > [click on add-in]

When I go to File>Options>Add-Ins and click on my add-in the publisher is set to . However if I look it up in the Control Panel, the publisher is displayed and set correctly. I have tried digitally ...
1
vote
1answer
220 views

Outlook Event is not getting fired on click of custom button

I am developing a Microsoft Outlook Add-in, where I have added one button in Add-In tab name OPENISMS. I could see the button, however on click the event is not getting fired. I have no clue why it is ...
-1
votes
1answer
155 views

How to develop MS Outlook plug-in in VS 2010? [closed]

Can any one give me some good reference or tutorial links to develop plugin for outlook with visual studio.
1
vote
1answer
205 views

Interop.outlook doesn't clear selected mails at drag and drop

I have a control which I can drop mail items on, works fine but I can't get it to clear the selection / items. For example: I drag and drop mail 1 --> mail 1 is in my list I delecte mail 1 from my ...
0
votes
0answers
101 views

VBA - Delete certain emails from POP3 server

I have two questions: 1. Would it be possible to delete certain emails from POP3 server (any eaxmple(s))? 2. Is there a way to initiate Outlook session and use existing account data (email; password) ...
1
vote
2answers
113 views

Saving the Project setting for TFS office add-in

I have scenario in which I am accessing TFS from outlook. I am doing the customization using office add-in. I don't want the users to give TFS connection setting every time they access TFS for the ...
0
votes
1answer
119 views

Outlook 2010 folder context menu not being displayed except when folder is selected

I'm customizing context menu for our Outlook AddIn and I'm using ribbon xml. That customized context menu should be displayed only on our solution's folders. Problem is, the function I specify for ...
0
votes
1answer
112 views

How come my outlook add-in only works once?

Ok so I have generated a very simple Ribbon to be added to each new Compose window that a user opens. The ribbon works fine the first time. It has 2 checkboxes on it, lets say the user selects the ...

1 2 3 4 5 17