Re: [python-win32] monitoring application controls...

2005-11-15 Thread Brian Jarrett
What you need are Windows hooks, which allows you to participate in the window procedures for other processes. Implementing a hook requires code in a DLL, because the DLL has to actually be "injected" into another process, to run in that processes context. That would usually make Python unsu

Re: [python-win32] monitoring application controls...

2005-11-14 Thread Tim Roberts
On Sat, 12 Nov 2005 12:40:03 -0700, "Brian Jarrett" <[EMAIL PROTECTED]> wrote: > >I'm currently researching ways to use Python to monitor the state, data, >and events associated with controls (comboboxes, editboxes, etc.) using >Python and the win32 extensions. I'd like to write a script that w

[python-win32] monitoring application controls...

2005-11-12 Thread Brian Jarrett
Hello all,   I’m currently researching ways to use Python to monitor the state, data, and events associated with controls (comboboxes, editboxes, etc.) using Python and the win32 extensions.  I’d like to write a script that would allow me to observe the changes that occur to an applicatio