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
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
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
- 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
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
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.
- 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!
>
&
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
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