SetWindowsHookEx and WM_NOTIFY problems
-
Hi, I have a hook set up with WH_GETMESSAGE and messages are sent to my hook procedure. But I am not getting WM_NOTIFY. I have clicked on ListView items, renamed then and I still do not get the WM_NOTIFY. Is there a reason for this
How do you call SetWindowsHookEx, with what parameters? Regards, Vitaly Tomilov Professional tooltips for all development platforms Free on www.Tooltips.NET
-
How do you call SetWindowsHookEx, with what parameters? Regards, Vitaly Tomilov Professional tooltips for all development platforms Free on www.Tooltips.NET
-
hhGlobal = SetWindowsHookEx(WH_GETMESSAGE,ProcessMessage,hMod,0); hhGlobal is in a shared data segment and hMod is the DLL's hInstance Ceri
Interesting, But could you instead use WH_CALLWNDPROC and see how it works? Apparently, WM_NOTIFY is posted to a message queue, or posted in a specific way. Regards, Vitaly Tomilov Professional tooltips for all development platforms Free on www.Tooltips.NET
-
Interesting, But could you instead use WH_CALLWNDPROC and see how it works? Apparently, WM_NOTIFY is posted to a message queue, or posted in a specific way. Regards, Vitaly Tomilov Professional tooltips for all development platforms Free on www.Tooltips.NET