![]() |
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
|
|||
|
|||
![]()
Hi
Can anyone please advise me how i can insert a name and address from the microsoft address book into a exel spreadsheet. If this cannot be done what alternitives are there? Thanks Oggy |
Ads |
#2
|
|||
|
|||
![]()
All loaded address books in Outlook are available through the AddressLists
collection. If you know the name of the contact, you can retrieve an AddressEntry object for that person with the following code: Dim myNameSpace As Outlook.NameSpace Dim myAddressList As Outlook.AddressList Dim myAddressEntries As Outlook.AddressEntries Dim myAddressEntry As Outlook.AddressEntry Set myNameSpace = Application.GetNamespace("MAPI") Set myAddressList = myNameSpace.AddressLists("Contacts") Set myAddressEntries = myAddressList.AddressEntries Set myAddressEntry = myAddressList.AddressEntries("John Doe") Debug.Print myAddressEntry.Name & " - "; myAddressEntry.address -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "Oggy" wrote: Hi Can anyone please advise me how i can insert a name and address from the microsoft address book into a exel spreadsheet. If this cannot be done what alternitives are there? Thanks Oggy |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Two addresses | Hell's Angel | Outlook Express | 1 | March 29th 07 08:30 PM |
Web Addresses | MsContessa | Outlook Express | 3 | December 24th 06 10:53 AM |
Convert msg addresses to pst | A McIntyre | Outlook - Using Contacts | 2 | October 10th 06 10:01 PM |
remove addresses | Sandy | Outlook - Using Contacts | 1 | August 31st 06 10:16 PM |
Addresses don't appear | Teacher Janet | Outlook - Using Contacts | 1 | January 8th 06 11:52 PM |