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