Re: How to hide console with Popen on Windows?

2012-05-22 Thread xliiv
On Tuesday, May 22, 2012 2:45:11 AM UTC+2, alex23 wrote: > On May 22, 3:00 am, xliiv wrote: > > Now I know that my 'solution' is not a solution and problem still bugs me. > > Any ideas how to deal with it? > > I haven't tried it but this thread talks about being able to use a > standard install o

Re: How to hide console with Popen on Windows?

2012-05-21 Thread alex23
On May 22, 3:00 am, xliiv wrote: > Now I know that my 'solution' is not a solution and problem still bugs me. > Any ideas how to deal with it? I haven't tried it but this thread talks about being able to use a standard install of Python with OpenOffice: http://user.services.openoffice.org/en/for

Re: How to hide console with Popen on Windows?

2012-05-21 Thread xliiv
On Monday, May 21, 2012 6:38:34 AM UTC+2, alex23 wrote: > On May 18, 6:22 pm, xliiv wrote: > > Like the topic, more details in followed links.. > > http://stackoverflow.com/questions/10637450/how-to-hide-console-with-... > > Try replacing all of your code with something sim

Re: How to hide console with Popen on Windows?

2012-05-20 Thread alex23
On May 18, 6:22 pm, xliiv wrote: > Like the topic, more details in followed links.. > http://stackoverflow.com/questions/10637450/how-to-hide-console-with-... Try replacing all of your code with something simple, a 'pass' op will do. Run the script again. Does the console still

Re: How to hide console with Popen on Windows?

2012-05-18 Thread Kevin Walzer
On 5/18/12 4:22 AM, xliiv wrote: Like the topic, more details in followed links.. http://stackoverflow.com/questions/10637450/how-to-hide-console-with-popen-on-windows http://code.activestate.com/recipes/409002-launching-a-subprocess-without-a-console-window/?c=14452 Please help :( Any hint

Re: How to hide console with Popen on Windows?

2012-05-18 Thread Chris Angelico
On Fri, May 18, 2012 at 6:22 PM, xliiv wrote: > Like the topic, more details in followed links.. > > > http://stackoverflow.com/questions/10637450/how-to-hide-console-with-popen-on-windows As you've already been advised, the way to avoid a console is to use pythonw.exe (wh

Re: Hide Console

2008-08-24 Thread alex23
On Aug 25, 10:59 am, Kevin McKinley <[EMAIL PROTECTED]> wrote: > When I use py2exe to convert Python script to executable Windows programs I > always have a black console pop up behind my program.  If i run the script > before i convert it with py2exe it don't have the console because i save the

Hide Console

2008-08-24 Thread Kevin McKinley
When I use py2exe to convert Python script to executable Windows programs I always have a black console pop up behind my program. If i run the script before i convert it with py2exe it don't have the console because i save the script ending with .pyw instead of .py. Is there a way to get rid o