Tagged Questions
9
votes
6answers
1k views
What can cause Windows to unhook a low level (global) keyboard hook?
We have some global keyboard hooks installed via SetWindowsHookEx with WH_KEYBOARD_LL that appear to randomly get unhooked by Windows.
We verified that they hook was no longer attached because ...
5
votes
1answer
397 views
C# low level mouse hook and form event handling
I'm using a simple form generated by VS 2010 which contains 2 buttons, start and stop.
Start triggers WH_MOUSE_LL using SetWindowsHookEx, and stop stops the hook.
The hook works fine and I mange to ...
3
votes
2answers
338 views
Low level keyboard hook not being called in .NET application
I am writing a keylogger in C# but am having some trouble getting my hook method called from the keyboard events. My code appears correct but for some reason the callback is not happening.
Here is ...
2
votes
1answer
376 views
Low level keyboard hook set with SetWindowsHookEx stops calling function in C#
I am creating a program that monitors key presses for controlling iTunes globally. It also has a few WinForms (for displaying track information and editing options).
The low-level keyboard hook works ...
2
votes
2answers
221 views
Is it possible to detect when a low-level keyboard hook has been automatically disconnected by Windows?
I am working on a program that uses keyboard hooks. However, when the PC that the program is running on is just slightly overloaded, it causes Windows to disconnect the hook from the program, causing ...
2
votes
2answers
437 views
Window hooks in c#
Im trying to hook up to other windows from csharp. Im using SetWindowsHookEx, but no luck with converting it fom c++ t c#.
I found this thread here
but it wasnt solved. The problem is that ...
2
votes
2answers
454 views
Module not found
I've been working on this one quite a bit and haven't gotten any closer to a solution.
I juut dug up my old copy of the WindowsHookLib again - It's available with source at ...
1
vote
3answers
620 views
SetWindowsHookEx seems not working for me in C# (WH_KEYBOARD_LL, global)
My application should perform some action whenever user pressed certain keys in windows.
Calling SetWindowsHookEx with WH_KEYBOARD_LL option seems to be standard way to achieve this. However in my ...
1
vote
4answers
5k views
SetWindowsHookEx in C#
I'm trying to hook a 3rd party app so that I can draw to its screen. Drawing to the screen is easy and I need no help with it, but I seem to be having issues with using SetWindowsHookEx to handle ...
0
votes
1answer
26 views
Global shell hook in WPF application
I'm trying to catch the event of creating/destroying the specified window of another application. For this purpose I set WM_SHELLHOOK.
Here is siplified code from my WPF application:
public delegate ...
0
votes
1answer
206 views
PInvoke errors calling external SetWindowsHookEx and GetModuleHandle
I am trying to set windows hooks in my program to an external EXE. This will be used to monitor resizing/minimizing of the window, so I can resize my program similarly, docking to the window.
How do ...
0
votes
1answer
102 views
CallWndProc hook not receiving all messages
I am making a little tool like Displayfusion and I need some Hooks to receive messages when Windows move/activate/etc , however I'm stuck..
I am using this project for the CallWndProc hook:
...
0
votes
0answers
63 views
Using UnhookWindowsHookEx to unhook other process's hooks
I am writing a program to Unhook key loggers (in c#). I know the hookid of the SetWindowsHookEx, as well as the dwThreadId, but I don't have IntPtr of the actual SetWindowsHookEx. How would I go about ...
0
votes
1answer
202 views
SetWindowsHookEx doesn't work with thread Id
Hello and thanks in advance to anyone thatll try to help.
I'm trying to set a CBT windows hook, which works well when Im setting it globally, but fails whenever I try to attach it to a single thread. ...
0
votes
0answers
93 views
How to check whether a Windows hook was set
For my unit testing: how can I test whether a Windows hook was set correctly?
I am building an eventlogger in C# using this example http://www.codeproject.com/KB/cs/globalhook.aspx
THese are the ...
0
votes
1answer
2k views
SetWindowsHookEx WH_KEYBOARD_LL not getting events
I am using SetWindowsHookEx() to create a keyboard hook. The creation seems to be successful but the procedure which is registered never gets called. Is there something I am doing wrong?
#region ...