If you have an Add-In then you can save the location on AddIn_Shutdown(). Example in c#. private void AddIn_Shutdown(object sender, System.EventArgs e) { //...
Did a quick google, and I think this code seems to extend the Outlook Close event... http://luifit.net/blogs/jluif/PermaLink.aspx?guid=90da1b84-3ea3-41de-a12 ...
How are you retrieving Outlook.Application? If you are using IOutlookExtCallback, that should work equally well in both Install() and OnDelivery(). Are you...
I've tried setting breakpoint and ::MessageBox'es in my Install() function, and they are not called before OnDelivery. I call GetOutlookApp() (see below) in...
Avrom - The easiest way I know of to do this is with our ArchiveAssistT for Outlook. While it doesn't change the Modified Date during the drag operation, it...
Hi all, I have a problem that occurs in Outlook 2002 and previous versions. My application works fine under Outlook 2003 and newer versions. Scenario: I have a...
What error do you get back from QueryInterface? Why can't you cache m_OLAppPtr from the previous calls to Install? I bet you are creating a new instance of...
Yes that's what I do, I thought I should do it that way because it's what I saw in the tutorials/examples that I found online, but you're right that caching it...
Hi all, Me again - after a week of relative smoothness in developing my plugin, I'm stuck on listing the attachments when sending a message. I hook into the...
OnSubmit is called before Outlook commits the changes that only exist in its buffer to the underlying IMessage. OnWriteComplete is the earliest you can access...
I've gotten used to maintaining a "to do" list of emails by simply keeping messages open. This plan works well for normal daily operation, but I've run into a ...
I have been using RDO to add application data to outgoing mail in a custom X-header. It works fine but this data sometimes gets pretty large, so I'm thinking...
thanks Dmitry ... Is that just the way Outlook is? I was guessing in theory that an attachment wasn't necessary.... or am I wrong there? (I'm really just...
I have a one line piece of code that simply fetches a task's EntryID: TaskID = Task.EntryID 99.9% of the time it works fine. But on some machines error...
Hello, I have an issue with saving HTML message. I am using Outlook 2003 and my store has both STORE_HTML_OK and STORE_RTF_OK. When I am updating PR_BODY_HTML...
Yep, it is the way Outlook is - it converts each attachment to a MIME part and creates separate parts for the plain text and HTML body. You can add custom...
Path properties are only applicable to the messages attached by reference. For the regular by value attachments Outlook has no idea where the attachment came...
How do you define PR_BODY_HTML? _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Sergey Golovchenko Sent: Friday,...
thanks shame - it would have been nice to encapsulate the data in a neat invisible MIME part if it had been possible. I guess I stay with the X-header for the...
Hello I want to find out which profile is configured for exchange server in GetProfileTable. Is there any property in OpenProfileSection that can be used...
I don't know if it'll in your case, but PR_HTML_BODY is only used by Outlook 2000 in the IMO mode. Other versions of Outlook and Exchange use PR_HTML, which is...
Hello, This is my problem: I'm writing a VB.NET application that at some points needs to iterate through the contacts folder in Outlook. Within the VB.NET ...
Sounds like you are hitting the 255 RPC channels limit. Since .Net does not immediately release COM objects, you can easily go over the limit 1. Release all...