Re: starting a Python 2.5 executable without the DOS window

2009-02-27 Thread Daniel
On Feb 27, 8:19 am, Vlastimil Brom wrote: > >> 2009/2/27 Greg Miller : > >> > I am working on a program that controls a piece of equipment.  The GUI/ > >> > control software is written with Python2.5/wxPython.  I would like to > >> > know if there is a way of starting the GUI without the DOS windo

Re: starting a Python 2.5 executable without the DOS window

2009-02-27 Thread Vlastimil Brom
>> 2009/2/27 Greg Miller : >> > I am working on a program that controls a piece of equipment.  The GUI/ >> > control software is written with Python2.5/wxPython.  I would like to >> > know if there is a way of starting the GUI without the DOS window >> > having to launch?  I would like only the app

Re: starting a Python 2.5 executable without the DOS window

2009-02-27 Thread Ulrich Eckhardt
Greg Miller wrote: > I would like to know if there is a way of starting the GUI > without the DOS window having to launch? Use pythonw.exe instead of python.exe. Uli -- Sator Laser GmbH Geschäftsführer: Thorsten Föcking, Amtsgericht Hamburg HR B62 932 -- http://mail.python.org/mailman/listinf

Re: starting a Python 2.5 executable without the DOS window

2009-02-27 Thread pruebauno
On Feb 27, 9:12 am, Greg Miller wrote: > I am working on a program that controls a piece of equipment.  The GUI/ > control software is written with Python2.5/wxPython.  I would like to > know if there is a way of starting the GUI without the DOS window > having to launch?  I would like only the ap

starting a Python 2.5 executable without the DOS window

2009-02-27 Thread Greg Miller
I am working on a program that controls a piece of equipment. The GUI/ control software is written with Python2.5/wxPython. I would like to know if there is a way of starting the GUI without the DOS window having to launch? I would like only the application itself to appear, no DOS window. Than