I used Py2exe to make exe from my script( that uses wxPython).So, I
have exe. I start the exe program from console that is I have console
window and my windows application. Now I would like to make the
console window active from my windows application. Is it possible?
Thanks for help. Lad
BMA TRADING wrote:
I used Py2exe to make exe from my script( that uses wxPython).So, I
have exe. I start the exe program from console that is I have console
window and my windows application. Now I would like to make the
console window active from my windows application. Is it possible?
Not from wxPython. Perhaps something from win32api or other modules may help.
···
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
If all you want is the console *all* the time (versus being able to open
it after the app starts), then just change your setup.py script to use
'console' rather than 'windows', iirc.
This doesn't let you type anything into the console, but you can see
output there if that's all you want.
Regards,
···
On Mon, 2004-08-30 at 14:55, Robin Dunn wrote:
BMA TRADING wrote:
> I used Py2exe to make exe from my script( that uses wxPython).So, I
> have exe. I start the exe program from console that is I have console
> window and my windows application. Now I would like to make the
> console window active from my windows application. Is it possible?Not from wxPython. Perhaps something from win32api or other modules may
help.
--
Cliff Wells <clifford.wells@comcast.net>