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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top