L
Ladan
Hi,
I need to rewrite an application originally written for office 2003 (VBA).
It is an Access 2003 application that reads and parses email allerts from
outlook mailbox and puts the extracted info into Access database table. It
references CDO 1.2.1 .
As our company is going to use Exchange 2007, I need to rewrite this app, so
that it does not reference this library anymore and works fine with Exchange
server 2007. My company wants to get this application work without using CDO
and MAPI.
As CDO and MAPI is being eliminated eventualy, I need to know what is the
substitute for them.
I have done some googling and found Outlook Object Model and Exchange Web
Services. But I'm not quite sure which one to use, and if there is any better
option for me. Here is some lines of code that uses CDO:
Public objSession As MAPI.Session
Set objSession = CreateObject("MAPI.Session")
objSession.Logon ProfileInfo:=server & vbLf & mailBoxName ....
I need to be able to logon to a mailbox on server from any client machine.
I would appreciate if you can help me with this problem.
I need to rewrite an application originally written for office 2003 (VBA).
It is an Access 2003 application that reads and parses email allerts from
outlook mailbox and puts the extracted info into Access database table. It
references CDO 1.2.1 .
As our company is going to use Exchange 2007, I need to rewrite this app, so
that it does not reference this library anymore and works fine with Exchange
server 2007. My company wants to get this application work without using CDO
and MAPI.
As CDO and MAPI is being eliminated eventualy, I need to know what is the
substitute for them.
I have done some googling and found Outlook Object Model and Exchange Web
Services. But I'm not quite sure which one to use, and if there is any better
option for me. Here is some lines of code that uses CDO:
Public objSession As MAPI.Session
Set objSession = CreateObject("MAPI.Session")
objSession.Logon ProfileInfo:=server & vbLf & mailBoxName ....
I need to be able to logon to a mailbox on server from any client machine.
I would appreciate if you can help me with this problem.