A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Getting cdoPR fields for names listed in Global Address List - err



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 8th 09, 07:43 PM posted to microsoft.public.outlook.program_vba
G Elliott
external usenet poster
 
Posts: 1
Default Getting cdoPR fields for names listed in Global Address List - err

I want to access several fields for names listed in the GAL, such as
Department, Phone, etc. I found this sample code for Visual Basic, and
modified a few little things. I confirmed that CDO 1.2.1 is installed, and I
enabled the checkbox in Tools/References in my VB project.

FYI - code runs fine thru this command:
Debug.Print olAddrEntries.Item(i).Name

Error occurs at this line in the code -
Debug.Print olAddrEntries.Item(i).Fields(CdoPR_DEPARTMENT_NAME ).Value

Here is the code:

Public Sub RetrieveStaffInfo()

Dim objOutlook
Dim olNS
Set objOutlook = CreateObject("Outlook.application")
Set olNS = objOutlook.GetNameSpace("MAPI")

'Get address book list
Dim olAddrEntries
Set olAddrEntries = olNS.AddressLists.Item(1).AddressEntries

Dim i As Integer

'Output names of those in the Global Address Book
For i = 1 To olAddrEntries.Count

Debug.Print olAddrEntries.Item(i).Name
Debug.Print olAddrEntries.Item(i).Fields(CdoPR_DEPARTMENT_NAME ).Value
Next

'Cleanup
Set olNS = Nothing
Set olAddrEntries = Nothing

End Sub


I appreciate any advice!! (I've already been to CDOLive and several other
resources. OutlookCode.com seems to be down today)
  #2  
Old January 8th 09, 11:55 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Getting cdoPR fields for names listed in Global Address List - err

And what is the exact error?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"G Elliott" G wrote in message
...
I want to access several fields for names listed in the GAL, such as
Department, Phone, etc. I found this sample code for Visual Basic, and
modified a few little things. I confirmed that CDO 1.2.1 is installed,
and I
enabled the checkbox in Tools/References in my VB project.

FYI - code runs fine thru this command:
Debug.Print olAddrEntries.Item(i).Name

Error occurs at this line in the code -
Debug.Print olAddrEntries.Item(i).Fields(CdoPR_DEPARTMENT_NAME ).Value

Here is the code:

Public Sub RetrieveStaffInfo()

Dim objOutlook
Dim olNS
Set objOutlook = CreateObject("Outlook.application")
Set olNS = objOutlook.GetNameSpace("MAPI")

'Get address book list
Dim olAddrEntries
Set olAddrEntries = olNS.AddressLists.Item(1).AddressEntries

Dim i As Integer

'Output names of those in the Global Address Book
For i = 1 To olAddrEntries.Count

Debug.Print olAddrEntries.Item(i).Name
Debug.Print olAddrEntries.Item(i).Fields(CdoPR_DEPARTMENT_NAME ).Value
Next

'Cleanup
Set olNS = Nothing
Set olAddrEntries = Nothing

End Sub


I appreciate any advice!! (I've already been to CDOLive and several other
resources. OutlookCode.com seems to be down today)



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
hyperlinking to an item in Global Address List Options - 2 Names Same Billy Outlook - General Queries 1 November 26th 07 03:43 PM
Cant send mail to public address book listed in Global Address Lis Mike Outlook - Using Contacts 0 September 21st 07 03:26 AM
Removing names from global address list? Andrea Outlook - Using Contacts 4 January 21st 07 03:15 PM
change fields displayed in global address list majobojrod Outlook - Installation 2 September 8th 06 07:51 PM
Resolve names in contacts as well as global address list Liam Waters Outlook - Using Contacts 1 May 4th 06 12:28 PM


All times are GMT +1. The time now is 10:08 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.