Pocket Outlook Contact Custom Property and Active Sync

J

jmsoftware

using Microsoft.WindowsMobile.PocketOutlook;
I add a custom property to a contact and assign a value.

Contact myContact = new Contact();
myContact.Properties.Add("customProp");
myContact.Properties["customProp"] = "xyz";

Does Active Sync send this custom property to the desktop when synchronizing?

If so, how would I access this custom property on the desktop using
Microsoft.Office.Interop.Outlook? I have looped through the Contact Item
Properties and User Properties but haven't been able to find it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top