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 27714 - 27743 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
27733
Hi, I have an outlook form with 5 checkbox and would like the checkbox to populates the "to" field. Ex. If I check chk1 chk4 and chk5 then I would have...
Bourbeau, Martin
bourbm@...
Send Email
Oct 30, 2008
1:01 pm
27734
Extended MAPI isn't supported at all for use in managed code, the memory models are incompatible. And Extended MAPI requires programming in C++ or Delphi only....
Ken Slovak
kenslovak2000
Offline Send Email
Oct 30, 2008
1:21 pm
27735
What do you mean by the box would have to be checked for the reader? Do you mean for the recipient? That would be difficult. For the checkboxes, once you read...
Ken Slovak
kenslovak2000
Offline Send Email
Oct 30, 2008
1:24 pm
27736
Hi I am new to Outlook programming , at the moment I am working on a requirement for importing the new mails coming to the Outlook into a database (Preferably...
sham457329
Offline Send Email
Nov 10, 2008
1:42 pm
27737
Yes reader meant recipient, that part is not a big deal if the box can't remain check once send, but I believe it is possible... The recipient should be added...
Bourbeau, Martin
bourbm@...
Send Email
Nov 10, 2008
1:43 pm
27738
There's some sample event code here for automatic handling of certain items. http://www.outlookcode.com/codedetail.aspx?id=456 ...
Jimmy Pena
d540x
Offline Send Email
Nov 10, 2008
8:48 pm
27739
Shamir, If you are using Outlook with Exchange, you can link directly to the Exchange database and pull all of the information you are looking for. The Inbox...
James LaBorde
jlabordeswfcu
Offline Send Email
Nov 10, 2008
8:52 pm
27740
This is a question about Styles in the WordEditor of Outlook. From Outlook2003 - if you had specified to use Word as your e-mail editor and even in Outlook2007...
Terje Kristiansen
terje252003
Offline Send Email
Nov 17, 2008
7:53 am
27741
We have an Access program that creates multiple Outlook drafts (electronic invoices). How can we send them all at once without opening each one to send it. ...
dvan_49441
Offline Send Email
Nov 26, 2008
3:44 pm
27742
What version of Outlook? How does the Access code create the Outlook items, does it use the Outlook object model? Ken Slovak Slovak Technical Services, Inc. ...
Ken Slovak
kenslovak2000
Offline Send Email
Nov 26, 2008
4:00 pm
27743
... Ken, Outlook 2003. The Access code creates the drafts and they go in the Outlook Drafts folder which is a subfolder under my name. I wrote this code to...
dvan_49441
Offline Send Email
Nov 26, 2008
4:59 pm
Messages 27714 - 27743 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