How to get all contacts filed names?

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

Guest

hallo,

I trying to wirte a vb programm whitch will export all contacts to an
database.
The connection to outlook is working fine. My problem is now how to get all
filed names? I have founf onla a few filednames like LastName Companyname.
Is there a script which will give me all filed names?

Example:
Texteintrag = objItems(i).LastName
Texteintrag = objItems(i).CompanyName
 
When in doubt, check the object browser: Press F2 in VB or in Outlook's VBA environment. Switch from <All Libraries> to Outlook to browse all Outlook objects, such as ContactItem, and their properties, methods, and events.

FYI, there is a newsgroup specifically for general Outlook programming issues "down the hall" at microsoft.public.outlook.program_vba or, via web interface, at http://www.microsoft.com/office/community/en-us/default.mspx?dg=microsoft.public.outlook.program_vba

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top