Link to home
Start Free TrialLog in
Avatar of rimig88
rimig88

asked on

Are there any "Available" Outlook Contact Properties to use?

So I am still working on my Outlook project, in C#.

I am trying to store some information related to a Contact in Outlook. I can read, edit, and store the "FullName", "JobTitle", "OfficeLocation", etc....

However, I want to store some information that is not related to any of these but is specific to my company. Does anyone know if Microsoft put some extra properties associated with contacts? I would love an "Aux1", "Aux2", etc.....but am I dreaming???


I have attatched a document which may help. I basically iterated through a ContactItem and printed out all the properties. I didn't really notice anything which I could use, but maybe someone could help. Sorry, I didn't print out what was actually stored in each of the fields...trying to keep my contacts private!!!
ContactProperties.txt
Avatar of solomonacquah
solomonacquah
Flag of United States of America image

perhaps the answer can be found here: http://www.outlookcode.com/
This white paper on Outlook contact Items might help.

http://www.helenfeddema.com/Files/outlflds.zip
Avatar of Chris Bottomley
If you look at the all contact fields you will find the user field 1 through 4 youi could use

Chris
Note these fields appear in your output file as user1 through user4 and you can add them to your contact form if you wish or simply access them via the "all contact field" drop downs.


Chris
Avatar of rimig88
rimig88

ASKER

Chris,

Do you know what those are used for, user1 - user4?

I was just looking in Outlook at a contact and I couldn't even find anything in there. I will experiment a little but this might just be my ticket.
ASKER CERTIFIED SOLUTION
Avatar of Chris Bottomley
Chris Bottomley
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rimig88

ASKER

I'm using them. I went through my whole company address list and not one contact had any information stored there. So they must be available.
That was easy enough then ... always nice when a plan comes together though i've always felt 4 fields a little restrictive!

Chris
Avatar of rimig88

ASKER

Yes very restrictive, I may have to do some clever string building techniques to fit all my data. Thanks though.