How do i get all the phone numbers to show up using

 PhoneNumberLookupCustom (fld, &params, true);

here is my lookup code. it only shows the work number

void AddressLookup (FieldPtr fld)
{
 Char     *textP = "Phone number lookup",
       *addP = "Add";
 AddrLookupParamsType params;
 
 MemSet(&params, sizeof(params), 0);


 params.pasteButtonText = addP;
 params.title = textP;
 params.field1 = addrLookupSortField;
 params.field2 = addrLookupWork;
 params.field2Optional = true;
 params.userShouldInteract = true;

 PhoneNumberLookupCustom (fld, &params, true);

}




-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to