Top "Keyboard-hook" questions

The term keyboard hook covers a range of techniques used to alter or augment the behavior or intercepting keyboard event messages before they reach an application.

Intercepting the Fn key on laptops

Sometimes when I work on Thinkpads/MSI laptops, the Ctrl and Fn key are swapped (Fn being the leftmost key), …

language-agnostic keyboard hook keyboard-hook
How do I trap windows key, alt+tab, ctrl+alt+delete in C#?

How do I trap Windows key, Alt+Tab, and Ctrl+Alt+Delete in a Windows application using C#?

c# keyboard-hook
SetWindowsHookEx returns 0 when compiling for the .NET 4.0 framework in 32bit machines

I'm trying to set a low level windows keyboard hook to grab three keys pressed even if the application is …

c#-4.0 com-interop keyboard-hook setwindowshookex
Windows Global Keyboard Hook - Delphi

I've created a GLOBAL keyboard hook DLL, using source code found on the internet. For the best part it works …

delphi keyboard-hook setwindowshookex
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 …

c# keyboard-hook setwindowshookex
Can I use Python to capture keyboard and mouse events in OSX?

I'm trying to write a simple macro recorder in Python for OSX - something which can capture mouse and key …

python macos keyboard-hook
global keyboard hooks in c

i want to write a global keyboard hook to disallow task switching.When i googled i found a whole lot …

c windows hook keyboard-hook
Listening to keyboard events without consuming them in X11 - Keyboard hooking

I tried to write a program which hooks keyboard messages to pronounce the name of each key whenever it is …

c++ linux x11 xlib keyboard-hook
Can I change a user's keyboard input?

I found this keyboard hook code, which I'm trying to slightly modify for my purposes: http://blogs.msdn.com/toub/…

c# low-level keyboard-layout keyboard-hook
error C2440: 'type cast' : cannot convert from 'overloaded-function' to 'HOOKPROC'

I`m working on keylogger, and this is what I got Keylogger.h: #pragma once #include <stdio.h> #…

c++ winapi keyboard-hook keylogger