>> I'm trying to parse email adresses from my addressbook and so far, I found a >> way to retrieve the work address, but I'm just not sure how to retrieve the >> value for a.kABEmailHomeLabel >> Is there an example I can refer to ? > Maybe like this? > > // get an entry > dim a as new ABAddressBookMBS > dim p as ABPersonMBS = a.owner > > // query all emails > dim e as ABMultiValueMBS = p.valueForProperty(a.kABEmailProperty) > > // walk over all > dim u as integer = e.count-1 > for i as integer = 0 to u > dim label as string = e.labelAtIndex(i) > dim value as string = e.valueAtIndex(i) > > // show label and value for this entry > MsgBox str(i)+": "+label+", "+value > > // is it home? > if label = a.kABEmailHomeLabel then > MsgBox "Home: "+value > end if > > next
Danke! It works great :) as usual :) louis _______________________________________________ Mbsplugins_monkeybreadsoftware.info mailing list [email protected] https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info
