Re: [python-win32] Control-C

2005-10-17 Thread Tim Roberts
On Fri, 14 Oct 2005 08:38:49 -0700, David Schnepper [EMAIL PROTECTED] wrote: The Windows notion of a Console is independent from a visual window on the display. You can still have a Console without anything appearing on the screen. Generally, if you start a process from a cmd.exe window you

Re: [python-win32] Control-C

2005-10-14 Thread Sean Q. Hendricks
Mark Hammond wrote: Sadly, I think GenerateConsoleCtrlEvent will not work for you. In short, it is nearly useless :) The description of the function says it sends a specified signal to a console process group that shares the console associated with the calling process and it means it literally.

Re: [python-win32] Control-C

2005-10-14 Thread David Schnepper
Mark Hammond wrote: Sadly, I think GenerateConsoleCtrlEvent will not work for you. In short, it is nearly useless :) The description of the function says it sends a specified signal to a console process group that shares the console associated with the calling process and it means it literally.

Re: [python-win32] Control-C

2005-10-13 Thread Gabriel Genellina
At Thursday 13/10/2005 17:33, you wrote: I've looked around, but I wasn't able to find anything about this issue. I am writing an application that calls a separate windows application as a process. That's not a problem, I can get it to run and do what it needs to do. However, the normal way to

Re: [python-win32] Control-C

2005-10-13 Thread Mark Hammond
I've looked around, but I wasn't able to find anything about this issue. I am writing an application that calls a separate windows application as a process. That's not a problem, I can get it to run and do what it needs to do. However, the normal way to stop the separate windows