quot;wesley chun" <[EMAIL PROTECTED]>
2006.08.07 22:28
To
"János Juhász"
<[EMAIL PROTECTED]>
cc
tutor@python.org
Subject
Re: [Tutor] os.system()
with NO_WAIT
> os.system('vedicom.exe')
>
> Have you got any idea how I can strart this windows GU
> os.system('vedicom.exe')
>
> Have you got any idea how I can strart this windows GUI program with not
> waiting its return.
instead of os.system(), you want to use the subprocess module if you
are using Python 2.4+:
http://docs.python.org/lib/module-subprocess.html
calling subprocess.Po