05-13-2008 03:24 AM
05-13-2008 03:38 AM
Hi Russell,
try:
ContactList cl = _actFramework.Contacts.GetContacts(null); ContactFieldDescriptor nameField = _actFramework.Contacts.GetContactFieldDescriptor("TBL_CONTACT.FULLNAME",true); string name = cl[0].FullName; int contactPos = cl.Find(nameField,Name);
ContactFieldDescriptor inherits from PropertyDescriptor so that should happily work. You might need to possibly cast the ContactFieldDescriptor?
HTH
Vivek