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...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 24060 - 24089 of 27713   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24060
Hi, I'm trying to monitor when an e-mail has been sent (from within a VB6 application). I have been trawling through various sites but they seem to refer to ...
syme321
Offline Send Email
Aug 2, 2004
1:23 am
24061
Outlook 97 does not support this kind of VB6 application. You would need to use Extended MAPI and C++ or Delphi to build an Exchange client extension. -- Sue...
Sue Mosher
mosher_sue
Offline Send Email
Aug 2, 2004
11:49 am
24062
Thanks for that, tried it and it worked like a charm, thanks again. /Karl ________________________________ From: Dmiry Streblechenko...
Karl Anders Josefsson
virtually_void
Offline Send Email
Aug 2, 2004
12:25 pm
24063
Thanks for your message, Bijan. I'm working on a custom email encryption service and have own encryption algorithm. I do not want to use the outlook vb editor...
hjafary
Offline Send Email
Aug 2, 2004
12:47 pm
24064
Sue, is the same true for outlook 2002? Hasan. ... would need to use Extended MAPI and C++ or Delphi to build an Exchange client extension. ... VB6 ... to ... ...
hjafary
Offline Send Email
Aug 2, 2004
3:25 pm
24065
No, Outlook 2000 was the first version to add application-level event handling to the COM object model for Outlook. -- Sue Mosher, Outlook MVP Author of...
Sue Mosher
mosher_sue
Offline Send Email
Aug 2, 2004
3:32 pm
24066
Hi Sue, RE: Cannot change the Type of a custom form After some further investigation it appears that only post items from one of my applications are causing...
Card, Simon
srcard
Offline Send Email
Aug 2, 2004
7:33 pm
24067
The form stays the same because you've one-offed the item. Dynamically adding a control is a known cause of one-offing. -- Sue Mosher, Outlook MVP Author of...
Sue Mosher
mosher_sue
Offline Send Email
Aug 2, 2004
7:46 pm
24068
Darn. Is there any known work-around? e.g. does having a hidden control that is made visible, instead of adding one, avoid one-offing? ... From: Sue Mosher...
Card, Simon
srcard
Offline Send Email
Aug 2, 2004
7:54 pm
24069
Yes, if you have the Outlook 2000 SPs applied; early versions didn't like the Visible property either, IIRC. See...
Sue Mosher
mosher_sue
Offline Send Email
Aug 2, 2004
7:58 pm
24070
Thanks. You have a whole section on it. Brilliant! Using Outlook 2002 but assume this is likely to be a cross version problem so I'll dive in to your...
Card, Simon
srcard
Offline Send Email
Aug 2, 2004
8:07 pm
24071
I am calling hr = imsg->GetProps((SPropTagArray*)m_pSenderProps,0,&pcount,&props); The program hangs on this command when it gets to the first IMAP message...
jljackson222
Offline Send Email
Aug 2, 2004
10:42 pm
24072
Is there a list like this one for development of Exchange applications? Thanks, Erick...
Erick Thompson
ethompson@...
Send Email
Aug 3, 2004
12:46 am
24073
Hi, to handle profiles in Outlook should I go with SafeRecipient.EntryID or SafeCurrentUser.ID? Currently I'm using SafeRecipient.EntryID and it seems to work...
edovia607
Offline Send Email
Aug 4, 2004
12:26 am
24074
Depends on what you want to do, doesn't it? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and...
Sue Mosher
mosher_sue
Offline Send Email
Aug 4, 2004
12:52 am
24075
Basically, I need a value so I can identify the current user by creating a key in the registry. It seems that the SafeCurrentUser.ID is too big and causes...
edovia607
Offline Send Email
Aug 4, 2004
1:02 am
24076
They're both going to be longish, but unique. I'd use SafeCurrentUser.ID. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for...
Sue Mosher
mosher_sue
Offline Send Email
Aug 4, 2004
1:18 am
24077
How can I get this info? Thanks!...
edovia607
Offline Send Email
Aug 4, 2004
1:43 am
24078
From CDO 1.21: Session.Name...
Sue Mosher
mosher_sue
Offline Send Email
Aug 4, 2004
1:54 am
24079
Isn't there a way through MAPI? I'm using C++...
edovia607
Offline Send Email
Aug 4, 2004
3:13 am
24080
Call IMAPISession::Open(pbGlobalProfileSectionGuid, ...), then read the PR_PROFILE_NAME property from the returned IProfSect. ... From: edovia607...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 4, 2004
3:22 am
24081
Ok, but where do I get the IMAPISession pointer from? ... read the ... -...
edovia607
Offline Send Email
Aug 4, 2004
3:27 am
24082
Got it! :) CComPtr<IMAPISession> pSess = NULL; hr = MAPIInitialize( NULL ); hr = MAPILogonEx( 0, NULL, NULL, MAPI_EXTENDED, &pSess ); if( pSess ) { ...
edovia607
Offline Send Email
Aug 4, 2004
3:59 am
24083
Note that in case of Outlook 2002 and up, you can use Namespace.MAPIOBJECT - you can QI it for IMAPISession. ... From: edovia607 [mailto:lvandal@...] ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 4, 2004
4:12 am
24084
How does one set a password for a profile. Is it at the client level or the Exchange level? Any idea on my post about GetProps on IMAP messages? its not ...
jljackson222
Offline Send Email
Aug 4, 2004
4:13 am
24085
Hi All, There is a simple and minimal service provider source code available on sourceforge.net. http://otlkcon.sourceforge.net/ Currently I am also trying to...
shashi_cuk
Offline Send Email
Aug 4, 2004
5:16 am
24086
There is no such thing as a profile password. Each service (such as "MSPST MS") is free to use its own authentication scheme. Exchange provider picks up the...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Aug 4, 2004
7:03 am
24087
I have a server side VB application that reads the information in a public folder. The app basically reads information from each folder in the specified public...
ijourneaux
Offline Send Email
Aug 5, 2004
12:46 am
24088
Hello All, I have received a response from the author of the connector and that code has some errors and the code is under development.. Confirmed ! Regards, ...
shashi_cuk
Offline Send Email
Aug 5, 2004
5:21 am
24089
Outlook: 2000, 2002 SP3 Exchange: 5.5 I am reposting since I did not get a response the last time, may be this time someone will help out. I have developed a...
Dabo, Djibril
Dabobd@...
Send Email
Aug 5, 2004
10:51 am
Messages 24060 - 24089 of 27713   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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