Plugin Developement: How can I listen user's key press event

yachen

Member
Hello,
I'm developing a PL/SQL Developer Plugin these days and I found the plugin document really helpful. But I got stuck in one problem. Event functions did not include any event like capture a user keyboard input. Is it possible for me to bring a function to PL/SQL like AutoReplace which PL/SQL itself already include but with another keyinput not using .
 
You must use low-level WinAPI messages. Start learning SetWindowsHookEx function with WH_GETMESSAGE parameter.
 
Back
Top