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.

[python-win32] Python ASP Install

2005-10-14 Thread Emlyn Jones
Hello, I've written a web application using the Win32 IIS stuff. It uses a few .py modules and a collection of ASP pages using Python. I was wondering if anybody had any experience in distributing and installing an application like this and could offer any useful tips/gotchas. At the moment the

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.

[python-win32] Re: Python ASP Install

2005-10-14 Thread Roger Upole
Emlyn Jones wrote: Hello, I've written a web application using the Win32 IIS stuff. It uses a few .py modules and a collection of ASP pages using Python. I was wondering if anybody had any experience in distributing and installing an application like this and could offer any useful

Re: [python-win32] Comparing dbase date value with os.path.getmtime(filename)

2005-10-14 Thread Jim . Vickroy
You may wish to take a look at the time module (specifically) time.gmtime(...) or time.localtime(...)) to work with the return value from getmtime(...). Can't really help much with the return value from the database since I don't know what type of object it is. If you are using Python 2.3 or