Re: [PythonCE] Tkinter in pythonce...

2006-01-08 Thread Brian Brown
I had the TKinter stuff working and built a couple of apps that worked on Pocket PC... You have to go get the TK for Pocket PC binaries from them and install them on the pocket pc, then it all works, assuming your sys.path and such is set up correctly Brian On Jan 6, 2006, at 12:28 PM, Ro

Re: [PythonCE] Tkinter in pythonce...

2006-01-07 Thread Fuzzyman
Luke Dunstan wrote: - Original Message - From: "Stewart Midwinter" <[EMAIL PROTECTED]> To: "Rodrigo Contreras Köbrich" <[EMAIL PROTECTED]> Cc: Sent: Saturday, January 07, 2006 11:49 AM Subject: Re: [PythonCE] Tkinter in pythonce... Rodri

Re: [PythonCE] Tkinter in pythonce...

2006-01-06 Thread Stewart Midwinter
I'll get a copy of 2.3.5 installed over the next few days, then post my steps of what it took to get Tkinter going. cheers S -- Stewart Midwinter [EMAIL PROTECTED] [EMAIL PROTECTED] Skype, GoogleTalk, iChatAV, MSN, Yahoo: midtoad AIM:midtoad1 ___ Pytho

Re: [PythonCE] Tkinter in pythonce...

2006-01-06 Thread Luke Dunstan
- Original Message - From: "Rodrigo Contreras Köbrich" <[EMAIL PROTECTED]> To: Sent: Saturday, January 07, 2006 3:28 AM Subject: [PythonCE] Tkinter in pythonce... > Hi. > > I installed the CAB file in my PDA. > The first thing I wanted to test was the GUI

Re: [PythonCE] Tkinter in pythonce 2.3.5...

2006-01-06 Thread Luke Dunstan
quot;Luke Dunstan" <[EMAIL PROTECTED]> Cc: Sent: Saturday, January 07, 2006 12:13 PM Subject: Re: [PythonCE] Tkinter in pythonce... thanks for the extra details on 2.3.5. I can see now that it's different from 2.3.4. and more compatible with the desktop version. I'd better i

Re: [PythonCE] Tkinter in pythonce...

2006-01-06 Thread Stewart Midwinter
thanks for the extra details on 2.3.5. I can see now that it's different from 2.3.4. and more compatible with the desktop version. I'd better install it and find out more! my comments about osce.py were directed at 2.3.4. Perhaps the newer version doesn't need it, or may not be able to use it.

Re: [PythonCE] Tkinter in pythonce...

2006-01-06 Thread Luke Dunstan
- Original Message - From: "Stewart Midwinter" <[EMAIL PROTECTED]> To: "Rodrigo Contreras Köbrich" <[EMAIL PROTECTED]> Cc: Sent: Saturday, January 07, 2006 11:49 AM Subject: Re: [PythonCE] Tkinter in pythonce... > Rodrigo, no desesperes! > &

Re: [PythonCE] Tkinter in pythonce...

2006-01-06 Thread Stewart Midwinter
Rodrigo, no desesperes! Where do you have your python located? You probably need to add some code that tells python where to look for modules. you can do that with: sys.path.append('\\SD Card\\Program Files\\Python\\Lib') sys.path.append('\\SD Card\\Program Files\\Python\\Lib\\python23.zip\\lib-t

[PythonCE] Tkinter in pythonce...

2006-01-06 Thread Rodrigo Contreras Köbrich
Hi. I installed the CAB file in my PDA. The first thing I wanted to test was the GUI capabilities, so I tried to run the following code (which compiles nicely in the PC version): from Tkinter import * root = Tk() myContainer1 = Frame(root) ### (1) myContainer1.pack() ### (2) root.mai