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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 27345 - 27374 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27345
No hope with Vista?...
Max Shariy
mshariy
Offline Send Email
Oct 2, 2007
8:18 pm
27346
Where and when does your code run? _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Max Shariy Sent: Tuesday, October...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 2, 2007
8:36 pm
27347
It is a user-space GUI application. C++, MFC, no .NET is involved. Click a button, the code runs in the event handler, so it is in the main thread. ... ...
Max Shariy
mshariy
Offline Send Email
Oct 3, 2007
4:08 pm
27348
I'm trying to extract the dumpster items to a pst. Exmerge is not working and reports the items as incomplete, due to A/V scanning I think, so I have a...
Wildgen, Paul, ITS
wildgen2817
Offline Send Email
Oct 3, 2007
4:37 pm
27349
Where does your IMAPISession come from? From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Max Shariy Sent: Wednesday, October...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 3, 2007
4:39 pm
27350
So what is the script? The error description implies that you are using CDO 1.21 rather than Redemption ("Collaboration Data Objects" is a strong hint :-)) ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 3, 2007
4:53 pm
27351
I ran the install for the redemption.dll. Running on my desktop and have CDO installed. The script is below: servername = "servername" mailbox = "mailbox" set...
Wildgen, Paul, ITS
wildgen2817
Offline Send Email
Oct 3, 2007
6:37 pm
27352
Why are you mixing CDO 1.21 and Redemption? You can dynamically log to an Exchange mailbox using RDOSession.LogonExchangeMailbox. From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 3, 2007
6:50 pm
27353
I'm not intentionally mixing them. CDO is on the machine for Outlook and Excnage System Manager. They can't live together on the same box? I'm new to...
Wildgen, Paul, ITS
wildgen2817
Offline Send Email
Oct 3, 2007
6:53 pm
27354
They can sure live together on the same box, but why do you need to use CDO 1.21 in *your* script? Does it do something that RDO cannot do? Firstly, check that...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 3, 2007
7:03 pm
27355
We have an exe and a dll. The dll is regular (non COM), and is linked statically to the exe. There are three calls in the following sequence: 1. MAPILogon...
Max Shariy
mshariy
Offline Send Email
Oct 3, 2007
9:33 pm
27356
Have you tried to create a new message in the Drafts folder (or elsewhere) explicitly and then display the new message using either 1. Modally -...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 3, 2007
9:41 pm
27357
Yes! Tried the second approach - that is how my app shows existing messages. In this case IMAPIFormMgr.LoadForm returns the same error MAPI_E_EXTENDED_ERROR...
Max Shariy
mshariy
Offline Send Email
Oct 4, 2007
5:29 pm
27358
Hi all, I am converting msg files to eml files. What property can I use to get the sent date of the msg? The problem is when I am converting the date that...
jonathan_z_deguzman
jonathan_z_d...
Offline Send Email
Oct 5, 2007
2:48 am
27359
PR_CLIENT_SUBMIT_TIME _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of jonathan_z_deguzman Sent: Thursday, October 04,...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 5, 2007
3:04 am
27360
Thanks. Again I am stuck here is what I have done so far: strDate = objData->date.c_str(); if (!strDate.empty()) ...
Jonathan Joseph de Gu...
jonathan_z_d...
Offline Send Email
Oct 5, 2007
7:26 am
27361
You will just need to output the date in the valid RFC 822 format: In Delphi: function Rfc822DateTime(t: TDateTime): string; var wYear, wMonth, wDay: word; ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 5, 2007
4:52 pm
27362
Thanks I got this problem handled I get the right date now however even if I appenduserdefinedheader I have two dates appearing at the eml file which is the...
jonathan_z_deguzman
jonathan_z_d...
Offline Send Email
Oct 8, 2007
12:54 am
27363
I am not sure I understand - if you create the EML file explicitly in your code, why don't you use the right dates? It is all up to you. _____ From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 8, 2007
5:51 am
27364
Hi Dmitry, This is what I generate with my code: Date: Mon, 8 Oct 2007 13:27:36 +0800 From: <Ernesto Tomacruz Jr> Subject: Content Extraction Service...
Jonathan Joseph de Gu...
jonathan_z_d...
Offline Send Email
Oct 8, 2007
5:59 am
27365
What exactly are you trying to resolve? Is the value itself wrong? Or is it the format? The second value misses the time zone information. _____ From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Oct 8, 2007
9:52 pm
27366
Dmitry, What I am trying to do is to overwrite the first date: Date: Mon, 8 Oct 2007 13:27:36 +0800 with the second date Date: Thu 1 Feb 2007 17:58:6 which is...
Jonathan Joseph de Gu...
jonathan_z_d...
Offline Send Email
Oct 9, 2007
1:33 am
27367
Yes, you create a controk, then add it using the OptionsPagesAdd event. See http://msdn2.microsoft.com/en-us/library/aa171319(office.11).aspx -- Sue Mosher,...
Sue Mosher
sue_mosher_g...
Offline Send Email
Oct 9, 2007
12:18 pm
27368
I would expect mscomct2.ocx to be usable in Outlook 2007, assuming it's installed on the machine. Is that the problem -- that it isn't available natively? If...
Sue Mosher
sue_mosher_g...
Offline Send Email
Oct 9, 2007
12:20 pm
27369
After a little bit more investigation it seems that is Vista that is not compatible with mscomct2.ocx So with Vista and Office2007 – mscomct2.ocx is not...
Terje Kristiansen
terje252003
Offline Send Email
Oct 9, 2007
1:15 pm
27370
According to http://msdn2.microsoft.com/en-us/vbrun/ms788708.aspx mscomct2.ocx is not shipped with Vista but is tested with it, so I'd expect it to work. I'd...
Ken Slovak
kenslovak2000
Offline Send Email
Oct 9, 2007
1:34 pm
27371
I have seen that page that it should have been tested for Vista – but the problem is that when I try to register It fails with the code: 0x8002801c A search...
Terje Kristiansen
terje252003
Offline Send Email
Oct 9, 2007
3:44 pm
27372
A quick Google search on that error code shows that people have been able to register that OCX if either they have admin permissions or turn UAC off. So it is...
Ken Slovak
kenslovak2000
Offline Send Email
Oct 9, 2007
3:56 pm
27373
I am looking for away to take an Access Database, used for dispatching our ambulance crews and publishing it in an outlook calendar for the ambulance crews to...
Chris
todd7_us
Offline Send Email
Oct 9, 2007
4:18 pm
27374
Thanks Ken I will take a closer look into it – I will be back with the result. Terje Fra: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com]...
Terje Kristiansen
terje252003
Offline Send Email
Oct 9, 2007
6:29 pm
Messages 27345 - 27374 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