Some people have a number of lists/folders in Outlook, under Contacts (e.g. besides Contacts and Suggested Contacts, people can add new "folders" of contacts).
Now, my questions:
- How can I get a list of all these lists/folders?
- How can I access all the contacts in any of these folders?
I know that if I want to access the contacts from the main "Contacts" list, then the code looks like this:
MAPIFolder oMAPIFolder =
oNmSpc.GetDefaultFolder(OlDefaultFolders.olFolderContacts);
oItemsTemp = oMAPIFolder.Items;
How would it look like when accessing other contact lists/folders?
Thanks!