PC Review Forums Newsgroups Microsoft Outlook Microsoft Outlook VBA Programming Outlook Redemption - What is the function to display the AddressBook?

Reply

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

 
Thread Tools Rate Thread
Old 18-02-2004, 06:47 AM   #1
kim
Guest
 
Posts: n/a
Default Outlook Redemption - What is the function to display the AddressBook?


Hi all,

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

Thanks alot,
Kim,
  Reply With Quote
Old 18-02-2004, 04:02 PM   #2
Ken Slovak - [MVP - Outlook]
Guest
 
Posts: n/a
Default Re: Outlook Redemption - What is the function to display the AddressBook?

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.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginners Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"kim" <kct@emia.com.au> wrote in message
news:5c2c58b.0402172247.4d077ad1@posting.google.com...
> Hi all,
>
> What is the function to display the AddressBook in Outlook

Redemption
> object? example in VBA would be great.
>
> Thanks alot,
> Kim,



  Reply With Quote
Old 18-02-2004, 10:04 PM   #3
Edward W.
Guest
 
Posts: n/a
Default Re: Outlook Redemption - What is the function to display the AddressBook?

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




kct@emia.com.au (kim) wrote in message news:<5c2c58b.0402172247.4d077ad1@posting.google.com>...
> Hi all,
>
> What is the function to display the AddressBook in Outlook Redemption
> object? example in VBA would be great.
>
> Thanks alot,
> Kim,

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off