Tagged Questions
5
votes
5answers
1k views
SetWindowsHook stops working after some time
I defined a global hook on WM_MOUSE that works perfectly for some time. It post a message to a specific window each time the mouse move.
After some random time the hook stop sending messages. If I ...
3
votes
1answer
185 views
Hooking the 3rd X-Mouse button?
I wrote a low-level mouse hook in C#, which should capture XBUTTON events. For the 1st and 2nd xButton it works just fine, but there is no message for the 3rd xButton on my mouse. It seems like there ...
3
votes
2answers
2k views
How can I disable mouse click event system wide using C#?
Hey guys, I have a laptop with a very sensitive touch pad, and wanted to code a small program that could block the mouse input when I was typing a paper or something.
I didn't think it would be hard ...
1
vote
2answers
1k views
MouseProc hook and WM_LBUTTONDBLCLK
I have a hook setup for getting mouse events in a plugin I develop. I need to get the WM_LBUTTONDBLCLK, and I expect the message flow to be:
WM_LBUTTONDOWN, WM_LBUTTONUP, WM_LBUTTONDBLCLK
If the I ...
0
votes
1answer
51 views
Low Level Mouse Hook: Dealing with applications which prevent capturing
I noticed that my mousehook code fails to work when interacting with EA's Origin store. Basically when clicking inside of the window, it does not call the callback I registered with windows (using the ...
0
votes
1answer
59 views
How to Unhook two hook procedures simultaneously?
In my application I created two procedures namely callbackwnd procedure to handle focus events and mouse procedure to handle mouse click events.when I unhook the two procedure the application will ...