Joe Bennett wrote:
> Looking for a good simple remedial course on getting my python script
> to talk to a Windows program. The author of the windows program has
> documented the api here:
>
> http://www.logger32.net/help/Logger32/Using%20the%20Logger32%20External%20Interface.htm
To use this API, y
Where does the hardcoded 9 come from in this line ?
win32api.PostMessage(hwnd,message,1,9)
If I'm interpreting the docs correctly, that parm should be a handle
to a top-level window you create yourself that receives messages
from the app.
Also, you'll need to be running a message
Hi,
Looking for a good simple remedial course on getting my python script
to talk to a Windows program. The author of the windows program has
documented the api here:
http://www.logger32.net/help/Logger32/Using%20the%20Logger32%20External%20Interface.htm
I'm struggling to understand how to impl