Re: [PythonCE] weird Tkinter

2007-02-28 Thread Progor
Well, adding the paths didn't help, but I just went ahead and put import _tkinter in my libs.pth file and now my Tkinter programs work like everybody else's at least. Thanks for the pointer on .pth files. Bandung wrote: > > Here is a link explaining what *.pth files do. they are just text fil

Re: [PythonCE] a wxPython script that behaves like a CE application

2007-02-28 Thread Matt S.
Hi, So I now thankfully have a simple wxPython script that creates a frame, etc... Now I want it to act like a well-behaved CE application. Ultimately, I'd like to post it to the wiki (at least as a hack). Hope the formatting in this email comes through alright! Any help is greatly appreciate

Re: [PythonCE] One other question: detecting SIP

2007-02-28 Thread Progor
Ah, thanks, you got me pointed in the right direction anyway. I'm using Tkinter, and as far as I can tell it's protocol method doesn't give you access to the param's, but with this pointer in the direction of API calls I was able to: 1. Allocate a SIPINFO structure. 2. Set up a polling loop that

Re: [PythonCE] weird Tkinter

2007-02-28 Thread Progor
Hmmm, the only thing I'm not sure about is your (d) created a file which I call "pathextender.pth" file where I added all of the directories where my scripts are. In addition to adding all of my script directories (they are on storage cards), I then added the path to my python25\lib directory whe