Re: [python-win32] win32api & win32gui help

2014-03-03 Thread Tim Roberts
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

Re: [python-win32] win32api & win32gui help

2014-03-02 Thread Roger Upole
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

[python-win32] win32api & win32gui help

2014-03-02 Thread Joe Bennett
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