Re: [Py2exe-users] how to build same executabl with and without console output

2010-07-30 Thread Gelonida
On 07/30/2010 11:00 AM, Jimmy Retzlaff wrote: > On Fri, Jul 30, 2010 at 1:10 AM, Gelonida wrote: >> What I'd like to achieve ideally is to create a py2exe program, >> which >> will only display a window (so 'compiled' as 'windows'-application) if >> called normally. >> ... >> >> Is there any way t

Re: [Py2exe-users] how to build same executabl with and without console output

2010-07-30 Thread Gelonida
Hi, On 07/30/2010 03:51 PM, Dave Angel wrote: > pyt...@bdurham.com wrote: >>> Is there any trick in adding a console window to an application, that >>> was built as 'windows' application? ,,, >>> Since we're talking MS Windows here, see: > > http://msdn.microsoft.com/en-us/library/ms682528(VS.85)

Re: [Py2exe-users] how to build same executabl with and without console output

2010-07-30 Thread Dave Angel
pyt...@bdurham.com wrote: Is there any trick in adding a console window to an application, that was built as 'windows' application? I was recently wondering the same thing myself. My research indicates that its not possible to have a single Windows application that can run in both console

Re: [Py2exe-users] how to build same executabl with and without console output

2010-07-30 Thread python
> Is there any trick in adding a console window to an application, that was > built as 'windows' application? I was recently wondering the same thing myself. My research indicates that its not possible to have a single Windows application that can run in both console and GUI ("Windows") modes. H

Re: [Py2exe-users] how to build same executabl with and without console output

2010-07-30 Thread Jimmy Retzlaff
On Fri, Jul 30, 2010 at 1:10 AM, Gelonida wrote: > What I'd like to achieve ideally is to create a py2exe program, > which > will only display a window (so 'compiled' as 'windows'-application) if > called normally. > > however if being called with the option --debug it should display the > graphic

how to build same executabl with and without console output

2010-07-30 Thread Gelonida
Hi, What I'd like to achieve ideally is to create a py2exe program, which will only display a window (so 'compiled' as 'windows'-application) if called normally. however if being called with the option --debug it should display the graphical window plus a debug console where I can print to. I