outlook-addin

Cannot debug the add-in because 'Outlook' is already running

柔情痞子 提交于 2019-12-08 06:56:45
问题 I have an Outlook 2007 add-in project in Visual Studio 2013. It's been working fine forever, and all of a sudden Visual Studio keeps refusing to debug, with an error message saying Cannot debug the add-in because 'Outlook' is already running. Close 'Outlook' and then run the project again. No, outlook is not running. There is no Outlook process visible in the processes tab of Task Manager. I'm sure restarting the machine would resolve the issue but I am working remotely and cannot reboot for

Creating version independent Outlook add-ins [closed]

心已入冬 提交于 2019-12-08 05:38:28
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Looking for a library to create outlook add-in's for outlook 2010, 2007 and outlook 2003 Found this http://www.add-in-express.com/add-in-net/video.php which looks very good but also pricey since it's a general purpose library for creating addins for other office products as well Is there any other library for

Outlook add in , text box , delete\backspace not working

本小妞迷上赌 提交于 2019-12-08 05:13:55
问题 I developed an outlook add in (custom task pane), with web browser in the user control. All the things working well beside the backspace or the delete button when I am writing something in text box in the web browser, I can't use those keys, am I missing something? 回答1: Ok I solved the problem , The problem is that the custom task pane in not always gets fucos from the outlook. So, I raised an event every time that there is "onclick" for all the pane, and then forced the pane to be in focus.

Outlook add in , text box , delete\\backspace not working

…衆ロ難τιáo~ 提交于 2019-12-08 05:06:32
I developed an outlook add in (custom task pane), with web browser in the user control. All the things working well beside the backspace or the delete button when I am writing something in text box in the web browser, I can't use those keys, am I missing something? Ok I solved the problem , The problem is that the custom task pane in not always gets fucos from the outlook. So, I raised an event every time that there is "onclick" for all the pane, and then forced the pane to be in focus. I am a few years late to the party but I managed to fix this. The easiest way to fix this is to ensure

Getting attachments from Exchange Managed API using ASP.NET Core

巧了我就是萌 提交于 2019-12-08 04:08:47
问题 I am in the process of building an Outlook Add-In that authenticates to an external API that is also in my possession. For one of my functions, I am sending a list of attachment IDs from the add-in to the API. I can then use these IDs to get the corresponding attachments from Microsoft's Exchange Managed API. The issue is that because I'm using .NET Core, the recommended libraries are lacking the necessary functionality needed to access the attachments. Here is some code that I am trying to

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

六月ゝ 毕业季﹏ 提交于 2019-12-08 02:52:57
问题 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 Microsoft.Office.Interop.Outlook.Application(); var item = app.Session.OpenSharedItem(msgfile) as Microsoft.Office.Interop.Outlook.MailItem; string message = item.HTMLBody; app.Session.Logoff(); It is working fine for the first time the file is opening, but after closing the Outlook file trying to reopen the file it

Publishing Outlook add-in which uses Outlook preview element - SupportsSharedFolders

只愿长相守 提交于 2019-12-08 02:34:18
问题 I am developing Outlook add-in which will work with shared mailboxes. Currently, office add-ins are not available on delegate scenarios but MS has released preview build which supports these scenarios. https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/supportssharedfolders My problem is since the manifest.xml has preview elements; I can't upload the it at outlook.office365.com under my add-ins . I get following error. This app can't be installed. The manifest file doesn't

Visual Studio 2008 Outlook 2007 AddIn with WPF Window

时光毁灭记忆、已成空白 提交于 2019-12-08 01:01:13
问题 I've not been able to find a whole lot on this anywhere. Let me start by saying I don't want to use the old Windows Form. I want to add a new WPF Window to my outlook 2007 addin project in visual studio 2008. The WPF Window template however does not show up. I was following this tutorial: http://msdn.microsoft.com/en-us/library/bb410039.aspx, which even had a picture of how you could add a new wpf window to your outlook 2007 addin. The only problem is that it is for visual studio 2005. Surely

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

試著忘記壹切 提交于 2019-12-07 12:06:37
问题 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 converstaion thread. Thoes emails have the same mailItem.ConversationID. Based on this conversationID, my program generated an activty, and link conversationid to the activity which can be seen in each email in this email chain. It all works fine on my machine (I reply,forward,cc in the same

Match EWS Conversation* to Outlook Add-in Conversation*

半腔热情 提交于 2019-12-07 10:33:19
问题 I wrote an add-in for Outlook years ago that adds entries to a database based on the Item's ConversationIndex / ConversationId properties. This works great and remains uniform across all clients interacting with the messages (e.g. "Bob" can see that "Mary" already processed this message because an entry with the ConversationIndex already exists). I'm now trying to move this piece to a service (and connect via the EWS API) but I'm not having good luck matching these properties with the values