Nice one.
Looks intriguing. Hopefully I will find some time to try.
Only suggestion would be cut the images (Screenshots) down ...
The take 200KB+. Converting in GIF might help.
Regards,
Arno Pucher
--
www.thew4.org
=(there is no question that cannot be answered if we use our brain)=
__
I am not an expert user of PythonCE but I found Adam Kruszewski's
"all-in-one bundle" very easy to install.
If I remember correctly, it comes with some wxWidgets examples as well.
The package might not be the newest but you could give it a go. It
definitely worked for me.
Get it from his blog a
Using the PythonCE interactive window, I am trying to shortcut having to type
in a sys.path.append() command every time I want to run a python script that
is not in the standard path. So I created a module called paths.py with
several sys.path.append commands in it.
When I import this module int
Try using "sitecustomize.py". This is the setup I used for Python2.3:
# sitecustomize.py to be placed in python library directory.
import os
import sys
if os.name == 'ce':
sys.path.append("\My Documents\Personal")
Hope this is useful.
Mark Doukidis
On 5/17/06, Bandung <[EMAIL PROTECTED]> wro