Access All Contact Fields

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am creating a Word 2002 application to integrate with Outlook 2003. Does
anyone know a way to programmatically loop through all the fields in the "All
Contact Fields" list?
 
Thanks Sue,

But I am not sure what the collection name is. I am trying to create an
array which would contain all the field names found when you select "All
Contact Fields" from the field chooser or all fields available when creating
a contact.

Would it be something like

for each field in contact.field
array(x)=field.name
next field
 
ItemProperties *is* the collection name:

For Each field in contact.ItemProperties
array(x) = field.name
Next

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top