Re: [PythonCE] Running Python program without getting Python CE window

2006-03-02 Thread Ed Blake
--- Thomas Heller <[EMAIL PROTECTED]> wrote: > > I've lost the original email, butI hope this is still on topic: > > Now that ctypes works on WindowsCE, someone should revive the venster > project! > > http://venster.sourceforge.net/htdocs/ > Very cool project, I've been thinking for a while

Re: [PythonCE] Running Python program without getting Python CE window

2006-03-02 Thread Thomas Heller
Ed Blake wrote: > --- "Michael Foord" <[EMAIL PROTECTED]> wrote: > >> You ought to check out Wax. It's a friendly Pythonic layer that sits >> atop of wx and IMHO is just as easy to use as Tkinter. > > Lol! I've been using/tinkering with firedrop for a few weeks now so I am > vaguely familier wit

Re: [PythonCE] Running Python program without getting Python CE window

2006-03-02 Thread Ed Blake
--- "Michael Foord" <[EMAIL PROTECTED]> wrote: > You ought to check out Wax. It's a friendly Pythonic layer that sits > atop of wx and IMHO is just as easy to use as Tkinter. Lol! I've been using/tinkering with firedrop for a few weeks now so I am vaguely familier with wax. I don't really like

Re: [PythonCE] Running Python program without getting Python CE window

2006-03-02 Thread Luke Dunstan
The normal .py association on Windows is done with a couple of registry values: 1. Create a key: HKEY_CLASSES_ROOT\.py 2. Set the default value of this key to: Python.File 3. Create a key: HKEY_CLASSES_ROOT\Python.File\shell\open\command 4. Set the default value to: "C:\Python24\python.exe" "%1"

Re: [PythonCE] Warning about comctl32.dll

2006-03-02 Thread Luke Dunstan
- Original Message - From: "Jeffrey Barish" <[EMAIL PROTECTED]> To: Sent: Thursday, March 02, 2006 11:27 AM Subject: Re: [PythonCE] Warning about comctl32.dll >> > Some of my applications are now triggering a warning when they first >> > start >> > running that reads: >> > >> > Please

Re: [PythonCE] Unicode default encoding

2006-03-02 Thread Fuzzyman
Ischebeck, Jan wrote: >Just to add my 2 or 3 cents. > >Not all Strings in Python are Unicode. > > > Sure, but if you want to be certain that you are handling characters correctly you either *ought* to use unicode or be certain that your 'text' is either ascii or in the encoding of any streams yo

Re: [PythonCE] Unicode default encoding

2006-03-02 Thread Ischebeck, Jan
Just to add my 2 or 3 cents. Not all Strings in Python are Unicode. Python has a StringType and a UnicodeType. If you want to get a unicode string you have to write u"my test" instead of "my test". But in principle: u"my test" = "my test".decode("utf-8"). <-- depends on source encoding As ha

Re: [PythonCE] Unicode default encoding

2006-03-02 Thread Fuzzyman
Jeffrey Barish wrote: >>Luke Dunstan wrote: >> >> >>>- Original Message - >>>From: "Jeffrey Barish" <[EMAIL PROTECTED]> >>>To: >>>Sent: Friday, February 24, 2006 11:03 AM >>>Subject: [PythonCE] Unicode default encoding >>> >>> >>> What is the correct way to set PythonCE's