On Tue, Jul 27, 2010 at 4:12 PM, Timothy W. Grove wrote:
> I am using the following code to hide the console window when launching a
> subprocess under Windows.
>
> startupinfo = subprocess.STARTUPINFO()
> startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
> startupinfo.wShow
I am using the following code to hide the console window when launching
a subprocess under Windows.
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
startupinfo.wShowWindow = subprocess.SW_HIDE
self.mplayer = Popen(args,