Thread posts in I write a ContactList for choosing phone number(s):
1.
Started 4 months, 1 week ago (2008-07-28 20:22:00)
by okey3m
Code: import appuifw, contacts class ContactList: 'show a contact list for choosing phone number' def __init__(self, sortable = None): ' initialize variables' self.__db = contacts.open() self.__contact = [] self.__number = {} self.__load_contact(sortable) def __load_contact(self, sortable = None): 'load ...
Size: 2,868 bytes
Customize:
2.
Started 4 months, 1 week ago (2008-07-28 20:33:00)
by gaba88
hi okey3m it really a good small code and its really very useful for me also . i advice you to write a wiki article on this so that the new developers get the benefit. Enjoy Pythoning Gaba88
Size: 644 bytes
Customize:
3.
Started 4 months, 1 week ago (2008-07-28 21:04:00)
by okey3m
thank you very much, gaba88, you help me a lot these days. but.... eh.... may i ask... how to write a wiki aticle? i think i can't find the link...
Size: 316 bytes
Customize:
4.
Started 4 months ago (2008-07-28 22:36:00)
by shubhendra
Oh yeah i remember Wiki article thing. You just need to search the topic for thing for which you want to make an article for. If its not available then you would be asked if you want to create a new article.
Size: 264 bytes
Customize:
5.
Started 4 months ago (2008-07-29 03:49:00)
by gaba88
Quote: Originally Posted by okey3m thank you very much, gaba88, you help me a lot these days. but.... eh.... may i ask... how to write a wiki aticle? i think i can't find the link... Hi Okey3m i think subhendra has already given you the steps then also let me make it much clear. First write your title in...
Size: 1,289 bytes
Customize:
6.
Started 4 months ago (2008-07-29 07:29:00)
by okey3m
thanks a lot, shubhendra and gaba88, i've posted a article on wiki, here
Size: 342 bytes
Customize:
7.
Started 4 months ago (2008-07-29 13:15:00)
by gaba88
Quote: Originally Posted by okey3m thanks a lot, shubhendra and gaba88, i've posted a article on wiki, here hi okey3m great to see that you contributed a article at the wiki an it is a nice article. keep contribuiting in the wiki. Enjoy Pythoning
Size: 1,076 bytes
Customize:
8.
Started 3 months, 4 weeks ago (2008-08-06 13:40:00)
by zoellner86
nice code,.. im waiting 4 it,.. but when i click on an contact witch 2 numbers.. (like Nr1 = 12345 and NR2 = 67890 ) ... then it shows 12345 67890 67890 One number is showen twice time. du u understand and can u help me?
Size: 397 bytes
Customize:
9.
Started 3 months, 4 weeks ago (2008-08-06 13:50:00)
by gaba88
Quote: Originally Posted by zoellner86 nice code,.. im waiting 4 it,.. but when i click on an contact witch 2 numbers.. (like Nr1 = 12345 and NR2 = 67890 ) ... then it shows 12345 67890 67890 One number is showen twice time. du u understand and can u help me? hi zoellner86...
Size: 1,202 bytes
Customize:
10.
Started 3 months ago (2008-09-02 20:17:00)
by zoellner86 Offline
It is confusing. I have create a new contact. With this contact, I haven´t the problem. But with older contacts it showes it twice .. Hmm any idea?
Size: 182 bytes
Customize:
|
|
Top contributing authors for I write a ContactList for choosing phone number(s)
user's latest post:
I write a ContactList for...
Published (2008-09-05 02:41:00)
hi zoellner86 yes i got your point now I think you can do it i will give a hint just check the name label in the contacts database if the name is there then just call the class, otherwise do nothing. I think you can easily code this Enjoy Pythoning Gaba88
user's latest post:
I write a ContactList for...
Published (2008-09-04 21:52:00)
this contacts only displayd in "python phonebook", not in the usual nokia phonebook. I think, that python not exactly read out this additional "contacts" or it means, the string "f33uf8hf9qz3u4tzhgvru9ethg408" is a contact name. Is it possible to filter out only the contacts who includes phone numbers? that is my question.. i know its difficult to understand and english is not my primery...
user's latest post:
I write a ContactList for...
Published (2008-09-04 21:52:00)
this contacts only displayd in "python phonebook", not in the usual nokia phonebook. I think, that python not exactly read out this additional "contacts" or it means, the string "f33uf8hf9qz3u4tzhgvru9ethg408" is a contact name. Is it possible to filter out only the contacts who includes phone numbers? that is my question.. i know its difficult to understand and english is not my primery...
user's latest post:
I write a ContactList for...
Published (2008-09-05 02:41:00)
hi zoellner86 yes i got your point now I think you can do it i will give a hint just check the name label in the contacts database if the name is there then just call the class, otherwise do nothing. I think you can easily code this Enjoy Pythoning Gaba88
user's latest post:
I write a ContactList for...
Published (2008-07-28 20:22:00)
Code: import appuifw, contacts class ContactList: 'show a contact list for choosing phone number' def __init__(self, sortable = None): 'initialize variables' self.__db = contacts.open() self.__contact = [] self.__number = {} self.__load_contact(sortable) def __load_contact(self, sortable = None): 'load contact list from database' for id in self.__db: name = self.__db[id].title mobile =...
user's latest post:
I write a ContactList for...
Published (2008-07-28 22:36:00)
Oh yeah i remember Wiki article thing. You just need to search the topic for thing for which you want to make an article for. If its not available then you would be asked if you want to create a new article.
|