HI outlook -dev, I have written a plugin to run on Outlook 2003/XP/2000 that will change the message class of every new mail that arrives to teh mail box. ...
In Outlook, how do you set the checked property of a CommandBarButton? I want a button that acts the same way as the "Find" button on the standard bar. Buttons...
Am not too sure this is the right forum for this..... I am looking for a programmatic method of extracting the users and their permissions on a shared Exchange...
I have written a HTA - VBScript to do similar to this.. http://www.ericwoodford.com/exporting_exchange_2003_mailbox_information Mine pulls mailboxes that have...
MSG files are in the OLE storage format; you can open them using the DocFile Viewer from the Visual Studio. The format of the streams in not documented of...
Contact me at my private e-mail address. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Jason Coley Sent: Monday,...
Hi Dmitry, Thanks for the help. I wanted to read the information out of the MSG file for To, From, Subject etc without using the Outlook Object Model or any...
Kashyap, Vikram
vkashyap@...
Sep 6, 2006 4:50 am
26711
Did you look at an MSG file with the DocFile Viewer? If you can access the file contents using Istorage, you should be able to retrieve the streams (IStream)...
Hi, I am working with the outlook addin in C#. I need to execute my piece of code when the mail is closed and sent. ie i need to handle the close event and...
Hi Thanks... I got the solutio for this. we can handle this at mail object instead of Application Object. Amar Amar Kangod <kangod_amar@...> wrote: Hi,...
Hi All, We are using outlook 2003 with Exchange 2003. I am working a customized meeting request form with special catering menu page added. I created a...
Hi Brad: According to your suggestion, I purchased the Add-In Express.NET for Visual Studio 2005. We want to insert some menu bar or popup menu items into the...
Hello. I am trying to use Redemption to import a loose MSG file into outlook so I can use Outlook object model methods on it. I am following the example code...
Outlook cannot see changes made with Extended MAPI until you completely dereference the object and reopen it. Modify your code as follows: Set olkMi =...
Has anybody ever tried to implement support for the new Outlook 2007 Ribbon in a C++-based COM add-in? While we're working on a .NET rewrite, I'd like to buy...
Thanks Dimitri! That works perfectly. Are there any limitations for using this with non-mail types? Can I import appointments, journal items, etc. with this...
No, all kinds of items will work just fine this way. After all, the only difference between thems is the value of the PR_MESSAGE_CLASS property and a set of...
In fact, PutMarkForDownload only added after 2002 version. Now, I want to operate this API, first I get the value of the OlRemoteStatus, or even i just give it...
Hi Everyone, I am generating Outlook 2003 text emails in Access 2003 with Redemption.
Upon reciept, some, or all of the carriage returns have disappeared. I
am...
When you look at the messages in the Sent Items folder, do they look Ok in MFCMAPI or OutlookSpy? How about the Inbox? From: outlook-dev@yahoogroups.com...
Hi Again, I've just discovered that when the mail is received that the format menu
has the option to unwrap the text. When the message is in draft this
option...
Outlook automatically strips CRLFs from lines in plain text messages that it can't distinguish as "tabular"-type data. One trick is to prefix each line that...
Hi Again, The 3 spaces fixes it nicely. Thanks. Replaced the vbCrLf with the following function call: Function fvarNewLine() As String
fstrNewLine = vbCrLf & "...
Maybe -- see http://www.slipstick.com/mail1/longline.htm Wouldn't you just control that with your code, keeping the lines pretty short? Or have you thought...
Hi Dmitry, They look fine in sent items. Sue's trick with the spaces works OK,
although it would be nice to just not strip the returns.. Thanks
Steve...