![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |