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 wrote: 2009/6/23 C M : 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,

Re: launch a .py file from a batch file

2009-06-23 Thread Che M
On Jun 23, 5:30 am, Paul Moore wrote: > 2009/6/23 C M : > > >> 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, whic

Re: launch a .py file from a batch file

2009-06-23 Thread Dave Angel
Paul Moore wrote: 2009/6/23 C M : 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

Re: launch a .py file from a batch file

2009-06-23 Thread Paul Moore
2009/6/23 C M : >> 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 renamed

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 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

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.do

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