First Alan thx for your all your work ! 
I use a lot dll, binary plugin and a little Dialog...

My life is easier using those !

> 
> That's true.  There are things I can mess with in controls that live
> in other dialogs, but message handling ain;t one of them.  Tinkering
> with the message handling of a control means subclassing the control
> and fiddling with its message handling loop, and although there might
> be an obscure way of doing that, I don;t know what it is.
>

I do not know how to do it exactly but i suspect two way to handle this :
A) Non intrusive listener able to inform a script.
   Global event filtering in a thread listener.
   this is mostly what already exist in pp but even if we can add out
handlers using special Hook Command List (HookWindowEvents) it is yet
not possible to add control event. 
 
B) Injection and Hook, more intrusive/dangerous but give the ability
to block event, change passed info....  

This is using as you said subclassing (but need also to use dll
injection to be in the right process memory space....
see http://www.codeproject.com/KB/winsdk/AntonioWinLock.aspx



Reply via email to