How i can capture the "Click" Events in another applications?
P.S.
i'm sorry about my bad english
Printable View
How i can capture the "Click" Events in another applications?
P.S.
i'm sorry about my bad english
In order to handle other apps events you need a standard DLL where the WindowProc will be put so the other process can acces it.
In Windows NT you can install a low level mouse hook proc (WH_MOUSE_LL) which will get fired whenever the mouse click event occurs for all applications.
There is a DLL wrapper for this (and the source code) on my site - see Merrion Computing - Downloads
HTH,
D.