Tagged Questions

2
votes
2answers
220 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
3answers
455 views

Simple way to hook registry access for specific process

Is there a simple way to hook registry access of a process that my code executes? I know about SetWindowsHookEx and friends, but its just too complex... I still have hopes that there is a way as ...
2
votes
1answer
563 views

SetWindowsHookEx WH_MOUSE freeze on breakpoint in Win7

helos, on WinXP my application has been sucessfully using a global mousehook to retrieve mouseposition and clicks even if it does not have the focus. the hook is in a separate .dll and is being ...
1
vote
1answer
26 views

Questions about SetWindowsHookEx() and hooking

Here is a little background information. I'm working on replacing a dll that has been used in a dll injection technique via the AppInit_DLLs registry entry. Its purpose was to be present in every ...
1
vote
1answer
57 views

Get HMENU from HWND within a Hook

I'm installing a hook within my application to get the standard EDIT context menu (with undo/copy/edit/paste/etc.). I need to insert a new menu item for my application. I've set a windows hook, but I ...
1
vote
1answer
209 views

Horizontal scroll not working mouse_event(MOUSEEVENTF_HWHEEL)

There is no horizontal scroll when I call this method in Delphi 3 under Windows 7: const MOUSEEVENTF_HWHEEL = $1000; mouse_event(MOUSEEVENTF_HWHEEL, 0, 0, 120, 0); Vertical scroll with ...
1
vote
1answer
91 views

prevent hook dll loading

Is there a way to way set process security permissions or some other way to disable Windows from loading global window hook dlls? I don't want to disable SetWindowsHookEx, I just want to disable the ...
1
vote
0answers
263 views

How to inject a DLL into Adobe Reader X

I need to inject a DLL into Adobe Reader X that reads the events sent to the scrollbar (even if it is hidden). I need to do this to be able to find out what page of the document i am on. I have tried ...
1
vote
2answers
293 views

SetWindowsHookEx failing with google chrome. Error code 87 invalid parameter

I am making a tutorial based program and want to be able to hook my code into certain apps to get the tutorial interacting with the app. My hook code works for most apps except google chrome. I have ...
1
vote
3answers
619 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
2answers
610 views

Unloading DLL from all processes after unhooking global CBT hook

How do you properly unload a DLL from all processes when the system-wide hook that loaded them gets unloaded? From MSDN: You can release a global hook procedure by using UnhookWindowsHookEx, ...
1
vote
3answers
169 views

How can I keep an event from being delivered to the GUI until my code finished running?

I installed a global mouse hook function like this: mouseEventHook = ::SetWindowsHookEx( WH_MOUSE_LL, mouseEventHookFn, thisModule, 0 ); The hook function looks like this: RESULT CALLBACK ...
0
votes
1answer
43 views

SetWindowsHook Global not very Global

I'm playing around with SetWindowsHookEx, specifically I would like be able to find out about any window (on my desktop) thats been activated, via mouse or keyboard. Reading through MSDN docs for ...
0
votes
0answers
30 views

Application and active time

I am trying to implement a CBT Hook to do one simple thing: Find out what application is active for how long? Active means "user is interacting with the application window". For instance user working ...
0
votes
2answers
416 views

Can I use Global Hooks and Raw Input at the same time?

I tried using Global Hooks using SetWindowsHookEx to get all the the keystrokes. Problem is i cant use Global Hooks and Raw Input at the same time. I'm thinking there must be some issue here because ...
0
votes
2answers
171 views

Best way to intercept pressing of Caps Lock

What is the best way to intercept the Caps Lock button on Windows, for making a program like Launchy? Currently, I'm setting a low-level hook with SetWindowsHookEx, but that's a bit too low-level for ...
0
votes
1answer
286 views

Hooking Win32 windows creation/resize/querying sizes

I'm trying to "stretch" an existing application. The goal is to make an existing application become larger without changing the code of that application. A cosntraint is that the stretched ...
0
votes
1answer
414 views

calling setwindowshookex with WH_GETMESSAGE doesn't work on any process except the injector

I previously asked a question about something similar but I believe this time the circumstances are different. I have a DLL that has standard hook, unhook and msgProc functions. I load this DLL in my ...
0
votes
1answer
237 views

make `SetWindowsHookEx` call functions in my thread context

In order to use SetWindowsHookEx in a GUI application, you usually want in the bottom line to have a function in your thread called whenever an event has occurred. So for instance if I'm making a ...
0
votes
1answer
449 views

Process-wide hook using SetWindowsHookEx

I need to inject a dll into one or more external processes, from which I also want to intercept keybord events. That's why using SetWindowsHookEx with WH_KEYBOARD looks like an easy way to achieve ...
0
votes
3answers
182 views

not able to install hooks for all threads in a process

I am hooking keyboard in application . Requirement is to hook keyboard in all threads in the process. I used SetWindowsHookEx API SetWindowsHookEx(WH_KEYBOARD_LL, (HOOKPROC)::KeyboardHookProc, ...