-
PS: I am running the above code on Windows Mobile 6.0.
2009-02-08 14:11:31 UTC in Python Windows CE port
-
from tkFileDialog import askopenfilename # get standard dialogs
from tkColorChooser import askcolor # they live in Lib/lib-tk
from tkMessageBox import askquestion, showerror, askokcancel
from tkSimpleDialog import askfloat
from Tkinter import * # get base widget set
demos = {
'Open': askopenfilename,
'Color': askcolor,
'Query': lambda...
2009-02-08 09:42:28 UTC in Python Windows CE port
-
I tried but it just returned the result in shell:
Traceback (innermost last):
<NULL>: <NULL>.
2009-02-08 09:28:37 UTC in Python Windows CE port
-
I wroted some script using tkinter.
What confued me was that the script always starts with the shell.
Anybody knows how to close the shell?
These are from the PythonCE Wiki, but it is not clearly stated. I still don't know how to do it.
PythonCE Command Line Options
/nopcceshell
Starts PythonCE without the graphical shell. This is only useful when also passing a script filename on...
2009-02-08 09:11:22 UTC in Python Windows CE port