Calling Outlook 2010

BobbyB

New Member
Hi,

I have a progress 10.2B client running on windows 7 and I am trying to interface with Outlook 2010.

The following example code worked fine on Windows XP/ Outlook 2003:

DEF VAR hSession AS COM-HANDLE.

CREATE "MAPI.Session" hSession.
hSession:logon("", /* profile */
"", /* password */
FALSE, /* show dialog */
FALSE /* new session */
).

but fails when running on Win7/outook 2010.

Any advise greatly appreciated.

Thanks.
 

oli

Member
Probably a security issue.
Try setting the "Show Dialog" to "TRUE", and see what happens...
 
Top