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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 27703 - 27732 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27703
Hi Luke, Thank you very much. It fixed the problem and I am now able to preview the email in RTF format before sending it. Since it is .NET, I also had to...
saravananpalaniappan
saravananpal...
Offline Send Email
Aug 4, 2008
12:33 pm
27704
Outlook 2007, Exchange 2007 I am receiving this error when attempting to publish to the Organizational Forms Library: "Cannot publish the form because of a...
gboehm23060
Offline Send Email
Aug 8, 2008
2:03 pm
27705
I'm sure this must be almost an FAQ, but my searching has failed to reveal the answer. I need to do a little processing of embedded messages within another...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Aug 8, 2008
3:28 pm
27706
If it is a regular (not embedded) message, you can use Namespace.GetItemFromID. In case of an embedded message, you cannot access it as MailItem. From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 8, 2008
3:36 pm
27707
Bummer, it's an embedded message. Okay, I'll have to find a different way to accomplish my goals. Thanks. (I sure wish OL2007 didn't always double-space my...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Aug 8, 2008
3:47 pm
27708
Which methods were you thinking about? From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Brad [VE3BSM] Sent: Friday, August...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 8, 2008
4:12 pm
27709
The gist of it is that when you select multiple messages in a folder and hit Forward, this generates a new message with your selections as embedded ...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Aug 8, 2008
4:27 pm
27710
Exchange w/ Outlook 2003 client: In my office, we have a shared email account that we use to receive monthly reports from other departments. All of these...
mp_spellman
Offline Send Email
Aug 15, 2008
1:32 am
27711
1) Outlook doesn't have any rule condition to support that with personal distribution lists. You'd have to use a GAL DL. 2) Any "run a script" rule is by...
Sue Mosher
mosher_sue
Offline Send Email
Aug 15, 2008
1:41 am
27712
Thanks for the reply: 1: I had admin create a Distribution group for me, but when I tried running my rule using the group instead of the individual users, the ...
mp_spellman
Offline Send Email
Aug 15, 2008
11:08 am
27713
1) I may have been thinking of the rule for mail sent *to* a DL, not *from*. It's been a while since I used rules with a DL (another reason an event sink would...
Sue Mosher
mosher_sue
Offline Send Email
Aug 15, 2008
1:52 pm
27714
I have a need for an Outlook macro that can be run when a specific email is open. The macro has to open in turn two attached .pdf files and then somehow read...
jiryh
Offline Send Email
Sep 4, 2008
12:21 pm
27715
You could try a command-line-based PDF to text converter such as those found at: http://www.foolabs.com/xpdf/ ...
Jimmy Pena
d540x
Offline Send Email
Sep 5, 2008
1:31 am
27716
Hello outlook-dev list members - all 2600+ of you! I'm pleased to announce that after 9 years and more than 27,000 messages, I'm turning over ownership of this...
Sue Mosher
turtleflock
Offline Send Email
Sep 17, 2008
8:10 pm
27717
Hi In an outlook addin I am building I use RDO to intercept an email before it is sent and add some custom X-headers. This works fine. I had been using this to...
erikawonka
Offline Send Email
Sep 17, 2008
10:43 pm
27718
Why not add an attachment to the message? That would create a MIME part with your data. From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com]...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Sep 17, 2008
10:48 pm
27719
Is there any way through any model or tool (Outlook Object Model, Exchange Extension, Mapi, Redemption, etc...) to block the code on a custom outlook form from...
Kelly Johnson
sublimese
Online Now Send Email
Sep 18, 2008
2:36 pm
27720
Remove all the code from the form and handle all the events in your addin, that's about the only way. The code in the form is not accessible to the addin. Ken...
Ken Slovak
kenslovak2000
Offline Send Email
Sep 18, 2008
2:41 pm
27721
Simple is best. Thanks Dmitry, I'll try to do it that way. best regards ... part with ... dev@yahoogroups.com] On ... had ... email ... thinking ... body. ... ...
erikawonka
Offline Send Email
Sep 18, 2008
11:30 pm
27722
Dmitry, Thanks for your advice the other day. I have converted my addin so the data is now transferred as an attachment rather than as part of an X-header, and...
erikawonka
Offline Send Email
Sep 21, 2008
8:20 am
27723
Outlook hides embedded images. I don't know if the attachments get hidden based on the content-id header alone or whether it also looks if the HTML body...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Sep 23, 2008
10:36 pm
27724
Thanks again Dmitry. Thinking about it again, I realize I didn't properly explain what I was trying to achieve. While the addin is only for outlook users so ...
erikawonka
Offline Send Email
Sep 24, 2008
10:33 pm
27725
The problem is there is almost no *direct* way for you to control the MIME structure of a message. You can add custom headers to the message, add attachments,...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Sep 24, 2008
10:44 pm
27726
Thanks. That was what I was fearing. When you say "ALMOST no *direct* way", does that mean there IS some way but it's dangerous/overly complex? ... the MIME ...
erikawonka
Offline Send Email
Sep 24, 2008
11:11 pm
27727
No, I meant that you can still set the custom headers and specify the attachment encoding. From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Sep 24, 2008
11:18 pm
27728
I see. And you can control the MIME structure of the message *indirectly* that way. So I have added my attachment no problem. I can change the display name...
erikawonka
Offline Send Email
Sep 24, 2008
11:33 pm
27729
By encoding I mean base64, uuencode, etc - useless for what you are trying to do. Again, the only way to add an extra MIME part is to add an attachment. You...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Sep 24, 2008
11:41 pm
27730
Thanks again. The data is basically encrypted and compressed XML. The size is indeterminate at design-time because it depends on the number of individual items...
erikawonka
Offline Send Email
Sep 24, 2008
11:58 pm
27731
Dmitry Your comments gave me lots to think about. Thanks. I believe Exchange 2003 onwards stores incoming internet messages in MIME format and only converts...
erikawonka
Offline Send Email
Sep 26, 2008
1:52 am
27732
Hi, I am creating a VSTO C# AddIN. Is it possible to use MAPI inside the VSTO AddIn. IF so could you let me know how. Thanks Shailesh...
shailj
Online Now Send Email
Oct 30, 2008
1:00 pm
Messages 27703 - 27732 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