keyboard-hook
Call Int 13h in a ISR
I have written a ISR for int 9h by assembly in Real Mode. In this ISR, I call INT 13h, AH=0x02 for writing some data on Hard Disk. But data aren\'t written on Hard Disk. Also int 13h, ah=0x02 doesn\'t[详细]
2023-04-04 21:56 分类:问答Problem with the Alt key in macro recorder
I am writing a macro recorder (based on PyHook) and cannot make it to press key combination #2 after it hooked key combination #1, if #1 contains the Alt key. What else should I do besides unpressing[详细]
2023-03-27 02:43 分类:问答global keyboard hook slowing down computer
I am using the code from this article : private const int WH_KEYBOARD_LL = 13; private const int WM_KEYDOWN = 0x0100;[详细]
2023-03-24 07:39 分类:问答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).[详细]
2023-03-22 03:50 分类:问答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[详细]
2023-03-21 11:32 分类:问答How does Ctrl+B keyboard binding works?
The Ctrl+B in Word and othe开发者_运维问答r shortcuts work the same no matter what language I\'m using - how is this binding done? Can it be done in Java?If I understand you correctly I wonder that ty[详细]
2023-03-18 23:29 分类:问答How to hook copy actions in windows
I know how to write and use windows hook DLLs to capture things such as window messages on a window.What I need to do is capture any copy (Control+C or other method) done on the system in any applicat[详细]
2023-03-12 21:33 分类:问答How to get notified of mouse/keyboard activity without a global hook?
I have a transparent window (WS_EX_TRANSPARENT) floating topmost. Whenever there is a mouse move (anywhere on开发者_如何学JAVA the screen) or keyboard stroke, it needs to display the related info (e.[详细]
2023-03-09 21:51 分类:问答How do I replace a keystroke with jQuery?
I need to be able to replace a keystroke with jQuery.When the right arrow is pressed, I want the tab key to be pressed instead.So far I have:[详细]
2023-03-07 07:15 分类:问答What should i put in DLL when using it to create global hook?
I\'m creating a global hook but the problem is that it needs a DLL but i don\'t know anything about DLL. So what should i include in the dll 开发者_Go百科file?You can register as a low level keyboard[详细]
2023-03-04 14:07 分类:问答