Search the web
Sign In
New User? Sign Up
outlook-dev · Outlook Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 26991 - 27020 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26991
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) { //...
Keith Ball
popecheezy
Offline Send Email
Mar 1, 2007
11:06 am
26992
Is there something similar when using C++? Thanks. cheers, roel...
Roel
RoelVanhout
Offline Send Email
Mar 1, 2007
11:29 am
26993
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 ...
Keith Ball
popecheezy
Offline Send Email
Mar 1, 2007
11:42 am
26994
How are you retrieving Outlook.Application? If you are using IOutlookExtCallback, that should work equally well in both Install() and OnDelivery(). Are you...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 1, 2007
4:59 pm
26995
Great thanks Keith, I think I can get it to work with that sample. Not sure why I didn't find it myself :/ Thanks! cheers, roel...
Roel
RoelVanhout
Offline Send Email
Mar 1, 2007
8:30 pm
26996
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...
Roel
RoelVanhout
Offline Send Email
Mar 1, 2007
8:30 pm
26997
Thanks, will give it a try......
Max Shariy
mshariy
Offline Send Email
Mar 2, 2007
12:41 am
26998
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...
Newsgroups
cardiffsoft
Offline Send Email
Mar 2, 2007
12:25 pm
26999
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...
sunny Babe
movalgirl1
Offline Send Email
Mar 2, 2007
12:26 pm
27000
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 3, 2007
8:06 am
27001
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...
Roel
RoelVanhout
Offline Send Email
Mar 3, 2007
12:35 pm
27002
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...
Roel
RoelVanhout
Offline Send Email
Mar 11, 2007
4:53 pm
27003
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 12, 2007
6:09 am
27004
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 ...
tomcoopermi
Offline Send Email
Mar 13, 2007
5:46 pm
27005
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...
bobbyray.diamond
bobbyray.dia...
Offline Send Email
Mar 14, 2007
7:20 am
27006
You cannot add MIME parts unless you add an attachment. You might want to add a comment or an invisible block of text to the HTML body. _____ From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 14, 2007
2:20 pm
27007
Thanks, I've gotten a bit further, but now I'm running into this: I can only retreive PR_ATTACH_LONG_FILENAME, not PR_ATTACH_PATHNAME or ...
Roel
RoelVanhout
Offline Send Email
Mar 14, 2007
9:45 pm
27008
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...
bobbyray.diamond
bobbyray.dia...
Offline Send Email
Mar 15, 2007
5:25 am
27009
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...
Charles Sinclair
tasklineuk
Offline Send Email
Mar 15, 2007
9:50 am
27010
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...
Sergey Golovchenko
umnik700
Offline Send Email
Mar 16, 2007
3:03 pm
27011
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 17, 2007
10:48 pm
27012
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 17, 2007
10:55 pm
27013
How do you define PR_BODY_HTML? _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Sergey Golovchenko Sent: Friday,...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 17, 2007
10:56 pm
27014
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...
bobbyray.diamond
bobbyray.dia...
Offline Send Email
Mar 19, 2007
9:45 am
27015
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...
Piyush Parsai
piyushparsai
Offline Send Email
Mar 19, 2007
1:21 pm
27016
#define PR_BODY_HTML 0x1013001E ... [mailto:outlook-dev@yahoogroups.com] On...
Sergey Golovchenko
umnik700
Offline Send Email
Mar 19, 2007
2:12 pm
27017
Open the profile service table (IMsgServiceAdmin::GetMsgServiceTable) and see if there is a row with PR_SERVICE_NAME = "MSEMS" _____ From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 20, 2007
6:03 pm
27018
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 20, 2007
6:03 pm
27019
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 ...
goncho_bo
Offline Send Email
Mar 22, 2007
8:31 pm
27020
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...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Mar 22, 2007
8:54 pm
Messages 26991 - 27020 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help