Yeah you are rite juan.I'm trying to include an unavailabe header file.But
can you please help me with where can i download the required.

On Tue, Dec 8, 2009 at 10:36 PM, Juan Pedro Fisanotti <fisa...@gmail.com>wrote:

> 2009/12/8 mani kandan <majafri...@gmail.com>
>
>> I am new to this forum and pythonCE please help me with this issue.I
>> downloaded and installed pythonCE on my device and when i tried to run the
>> program
>>
>> <code>
>> import inbox, appuifw
>>
>> box = inbox.Inbox()
>> query = appuifw.query(u"Search for:", "text").lower()
>>
>> hits = []
>> ids = []
>> for sms_id in box.sms_messages():
>>       msg = box.content(sms_id).lower()
>>       if msg.find(query) != -1:
>>            hits.append(msg[:25])
>>            ids.append(sms_id)
>>
>> index = appuifw.selection_list(hits, 1)
>> if index >= 0:
>>         appuifw.note(box.content(ids[index]))
>> </code>
>>
>> it shows me Import error:No module named inbox.
>>
>> I not able to figure out how to include the particular file.
>>
>> --
>> ALWAYS KEEP SMILING
>>
>> FOR U EVER,
>>
>>     G.MANIKANDAN
>>
>> _______________________________________________
>> PythonCE mailing list
>> PythonCE@python.org
>> http://mail.python.org/mailman/listinfo/pythonce
>>
>>
> I'm not working with PythonCE at this moment, but that error is very
> simple: "inbox" is a module that you are trying to use, but is not installed
> on your system. Is not part of the standard library, so you must find and
> install it by yourself. Is like trying to use a software on your pc that has
> never been installed ;-)
>
> PS: sorry if my english isn't correct, I'm from Argentina :D
> --
> fisa  -  Juan Pedro Fisanotti
>



-- 
ALWAYS KEEP SMILING

FOR U EVER,

    G.MANIKANDAN
_______________________________________________
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce

Reply via email to