AW: [wxPython-users] How to remove the DOS window in wxPython ?
Micha Reiser
micha.reiser at famreiser.ath.cx
Thu Aug 3 11:06:52 PDT 2006
# setup.py
from distutils.core import setup
import py2exe
setup(windows=[
{
"script": "backup-ftp.py",
"icon_resources": [(1, "icon.ico")]
}
])
The Option windows is important, it isnt a console ;)
-----Ursprüngliche Nachricht-----
Von: Daniel Johnson [mailto:diffuser78 at gmail.com]
Gesendet: Donnerstag, 3. August 2006 20:04
An: wxPython-users at lists.wxwidgets.org
Betreff: [wxPython-users] How to remove the DOS window in wxPython ?
Hi,
I made a small app in wxPython. I created an exe using py2exe module as
explained on www.py2exe.org.
Now when I double click the exe file, along with my application a black DOS
windows also open up....which I don't want.
How can I make sure that DOS window never shows up when I launch my
application exe.
Every help is appreciated.
Thanks
More information about the wxpython-users
mailing list