Not so much a problem but..
I was wondering how to show all my contacts using this code:
But exclude contacts with a certain mobile number.Code:db = contacts.open() names = [] numbers = [] for i in db: names.append(db[i].title) num = db[i].find('mobile_number') if num: numbers.append(num[0].value) #First mobile else: numbers.append(None) names.sort() #Sorts the list of names alphabetically i = appuifw.selection_list(names)
Is this possible?
Thanks, Aden.

Reply With Quote

