Outlook Redemption - What is the function to display the AddressBook?

  • Thread starter Thread starter kim
  • Start date Start date
K

kim

Hi all,

What is the function to display the AddressBook in Outlook Redemption
object? example in VBA would be great.

Thanks alot,
Kim,
 
It's MAPIUtils.AddressBook. There's also an AddressBookFilter property
that can be set to filter the display.

I believe there is an example of using AddressBook on the Redemption
Web site.
 
Dim CdoSession As MAPI.Session
Dim objReUtil

Set CdoSession = CreateObject("MAPI.Session")
CdoSession.Logon "", "", False, False, 0

Set objReUtil = CreateObject("Redemption.MAPIUtils")

'This is likely to take a few seconds with no parameters specified
'Returns a SafeReciepient object

objReUtil.AddressBook


CdoSession.Logoff
 
Back
Top