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.
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.