Re: launch a .py file from a batch file

2009-06-23 Thread Paul Moore
2009/6/23 C M cmpyt...@gmail.com: Assuming you're running on Windows XP, try the following line in your batch file: @start path\MyPythonApp.pyw That's of course after you rename your script to a pyw extension.  That's associated with pythonw, which doesn't need a command window. Well, I

Re: launch a .py file from a batch file

2009-06-23 Thread Dave Angel
Paul Moore wrote: 2009/6/23 C M cmpyt...@gmail.com: Assuming you're running on Windows XP, try the following line in your batch file: @start path\MyPythonApp.pyw That's of course after you rename your script to a pyw extension. That's associated with pythonw, which doesn't need a command

Re: launch a .py file from a batch file

2009-06-23 Thread Che M
On Jun 23, 5:30 am, Paul Moore p.f.mo...@gmail.com wrote: 2009/6/23 C M cmpyt...@gmail.com: Assuming you're running on Windows XP, try the following line in your batch file: @start path\MyPythonApp.pyw That's of course after you rename your script to a pyw extension.  That's

Re: launch a .py file from a batch file

2009-06-23 Thread Dave Angel
Che M wrote: On Jun 23, 5:30 am, Paul Moore p.f.mo...@gmail.com wrote: 2009/6/23 C M cmpyt...@gmail.com: Assuming you're running on Windows XP, try the following line in your batch file: @start path\MyPythonApp.pyw That's of course after you rename your script to a pyw

launch a .py file from a batch file

2009-06-22 Thread CM
I'd like to launch a number of programs, one of which is a Python GUI app, from a batch file launcher. I'd like to click the .bat file and have it open all the stuff and then not show the DOS console. I can launch an Excel and Word file fine using, e.g.: Start path/mydocument.doc But if I try

Re: launch a .py file from a batch file

2009-06-22 Thread Dave Angel
CM wrote: I'd like to launch a number of programs, one of which is a Python GUI app, from a batch file launcher. I'd like to click the .bat file and have it open all the stuff and then not show the DOS console. I can launch an Excel and Word file fine using, e.g.: Start path/mydocument.doc

Re: launch a .py file from a batch file

2009-06-22 Thread C M
On Mon, Jun 22, 2009 at 8:04 PM, Dave Angel da...@ieee.org wrote: CM wrote: I'd like to launch a number of programs, one of which is a Python GUI app, from a batch file launcher. I'd like to click the .bat file and have it open all the stuff and then not show the DOS console. I can launch