Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
7answers
1k views

My software is not a virus. What should I do?

I have written a program (Mimer 1.1 -- http://sourceforge.net/projects/mimer/files/) and after 3000 downloads I found out that my own Nod32 Antivirus detects my program as a Win32/Agent.NFIWJLP ...
10
votes
6answers
9k views

C# - Why won't a fullscreen winform app ALWAYS cover the taskbar?

I'm using Windows Vista and C#.net 3.5, but I had my friend run the program on XP and has the same problem. So I have a C# program that I have running in the background with an icon in the ...
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 ...
6
votes
1answer
191 views

How to tell the difference between a user-tapped keyboard event and a generated one?

I've installed a keyboard hook: CGEventRef myCGEventCallback(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon) { Basically I want to take the user's keyboard taps, eat the ...
6
votes
2answers
9k views

Global keyboard capture in C# application

I want to capture a keyboard shortcut in my application and trigger a dialog to appear if the user presses a keyboard combo even outside of the app. Similar to Google Desktop Search's Ctrl, Ctrl to ...
5
votes
3answers
245 views

bypass refresh behavior of firefox

How do you capture 'refresh' button or event of firefox browser using javascript and immitate the behavior of IE when refreshing forms. Firefox refills the forms which destroys my ajax UI.
5
votes
1answer
1k views

System wide keyboard hook on Vista and later

I have a system-wide keyboard hook DLL that I have created that has been working successfully for years in Windows XP. However, it appears that in certain later versions of Windows (Vista Home ...
5
votes
4answers
566 views

How can my app find the sender of a windows message?

I have an app which uses a keyboard hook procedure in a library. The wParam in the hook for one message is 255 which we think is "(reserved / OEMClear)". I'd like to work out the source of this ...
4
votes
3answers
2k views

Low-level Keyboard Hooks/SendInput with Winkey+L possible? (workstation lockout is intercepted in Vista and higher)

I work on a project called UAWKS (Unofficial Apple Wireless Keyboard Support) that helps Windows users use Apple's bluetooth keyboard. One of the main goals of UAWKS is to swap the Cmd key (which ...
4
votes
2answers
1k views

Is it possible to use Win32 Hooks in Qt applications

I like to know if its possible to use win32 keyboard hook function (SetWindowsHookEx , SetWindowsHookEx ) in a Qt application. If possible pls provide a sample code on using SetWindowsHookEx , ...
4
votes
1answer
2k views

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), and it drives me nuts - I keep hitting Fn instead of Ctrl. I was wondering if it's at all ...
4
votes
2answers
2k views

C# Mono - Low Level Keyboard Hook

I'm using code that I found on the CodeProject.com for a low-level keyboard hook. The only problem is it uses external DLL calls that don't work in mono. I was wondering if anyone knew of a way to ...
3
votes
1answer
622 views

Modify NSEvent to send a different key than the one that was pressed

I'm trying to create an OS X keyboard hook for assistive technology purposes (i.e. don't worry, not a keylogger). When a user presses a key, I want to prevent the real keypress and send a fake ...
3
votes
1answer
665 views

C# - How to send small letters with SHIFT key using SendKeys.Send?

I am using this keyboard hook for my project. I am unable to send small letters using SendKeys.Send() with SHIFT modifier key pressed. My app needs (for example) if the user presses K button "a" ...
3
votes
3answers
367 views

How to unhook keyboard-hook using c# to develop a keystroke changing software

I am trying to develop a software which will take a keyboard input, consume the input and return some other character inexchange of the typed input. For example, if i type: "abcd" and define exchange ...
3
votes
4answers
508 views

Keyboard hook changes the behavior of keys

I'm creating a program that installs a keyboard hook to capture all keys and display some text related to them. However, I've hit upon a snag, and that is some keys change behavior when the hook is ...
3
votes
1answer
193 views

How can I do something ~after~ an event has fired in C#?

I'm using the following project to handle global keyboard and mouse hooking in my C# application. This project is basically a wrapper around the Win API call SetWindowsHookEx using either the ...
3
votes
2answers
251 views

Anything wrong with spamming GC.KeepAlive(KeyboardHookPointer)?

GC.KeepAlive() References the specified object, which makes it ineligible for garbage collection from the start of the current routine to the point where this method is called. Not really ...
3
votes
1answer
469 views

Is it possible to poll GetKeyboardState() as a replacement for a global keyboard hook?

Is it possible to poll GetKeyboardState() as a replacement for a global keyboard hook?
3
votes
2answers
1k views

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/archive/2006/05/03/589423.aspx As an overview, I want to have the user press a key, ...
2
votes
1answer
99 views

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 ...
2
votes
1answer
366 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
218 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
0answers
88 views

global hook of appcommand_media_play, appcommand_media_stop etc

i am trying to capture appcommand_media_play, appcommand_media_stop, appcommand_media_nexttrack etc in my delphi application. currently i use code: procedure WM(var Msg: TMessage); message ...
2
votes
1answer
916 views

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 brilliant, except when it comes to browsers. It picks up every key in the browser except, ...
2
votes
1answer
2k views

JNA Keyboard Hook in Windows

I have put together a JNA code for installing keyboard hook in Windows (using the JNA examples). The code compiles and everything, and I get the hook installed (I get handle to the hook successfully), ...
2
votes
3answers
775 views

Problem with Keyboard hook proc

The background: My form has a TWebBrowser. I want to close the form with ESC but the TWebBrowser eats the keystrokes - so I decided to go with a keyboard hook. The problem is that the Form can be ...
2
votes
1answer
742 views

Suppress task switch keys (winkey, alt-tab, alt-esc, ctrl-esc) using low-level keyboard hook

I'm trying to suppress task switch keys (such as winkey, alt-tab, alt-esc, ctrl-esc, etc.) by using a low-level keyboard hook. I'm using the following LowLevelKeyboardProc callback: IntPtr ...
2
votes
3answers
2k views

ToAscii/ToUnicode in a keyboard hook destroys dead keys

It seems that if you call ToAscii() or ToUnicode() while in a global WH_KEYBOARD_LL hook, and a dead-key is pressed, it will be 'destroyed'. For example, say you've configured your input language in ...
2
votes
1answer
6k views

How to hook external process with SetWindowsHookEx and WH_KEYBOARD

I am trying to hook for example Notepad without sucess. Making a global hook seems to work fine. Testing on XP SP2. Edit: Amended code works now. MyDLL code #include <windows.h> #include ...
2
votes
6answers
3k views

Adobe AIR Keyboard Hook

I'm trying to add a feature to my AIR app that can listen for (configurable) global keyboard events even when the app is minimized. Ex: CTRL-ALT-SHIFT-F12 to grab a screenshot. I can't find any way ...
1
vote
1answer
61 views

why do i get an exception while making a key stroke in the notepad?

i have one solution file in visual studio, and i have in it two projects one for the .dll file and one other project to the .c file: this is the .h file: #include <windows.h> #ifndef ...
1
vote
1answer
134 views

Is it possible to disable Ctrl+V in windows?

How can i disable Ctrl+V shortcut-key in windows and handle it by my own application? Actually , i want to ignore it and send another key instead of Ctrl+V.
1
vote
1answer
81 views

Using CGEventSetIntegerValueField to edit a keyboard event gives error

So, I asked another question here: How to tell the difference between a user-tapped keyboard event and a generated one? One of the answers that came up was to use the "mouse pressure" field ...
1
vote
1answer
155 views

Low-level keyboard hook: callback not reached

I'm trying to create a quick piece of code to capture the key sequence sent by one of the "hotkey" buttons on my tablet and reprogram its function. The button sends a LWin+LCtrl+Tab when pressed. ...
1
vote
1answer
301 views

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: <script type="text/javascript" ...
1
vote
0answers
455 views

Keyboard Hook Not Catching Every Key

I'm having a problem with a Global Keyboard Hook. For the most part, it works. Bu,t in the section below, it should be stopping the enter key from being passed onto the focused program. It only works ...
1
vote
1answer
354 views

32-bit Keyboard Hook unexpectedly works in 64-bit apps, but is hanging Outlook

Have been reading a lot about this one and the picture just gets muddier. I have a 32-bit app that installs a KeyboardHook to wait for a global hotkey and wake up. Running it on Win 7 x64 edition I ...
1
vote
1answer
387 views

How to simulate combination of keys(such as shift+left for selecting text) using global keyboard hook and postmessage()?

I am using a global keyboard hook (WH_KEYBOARD_LL) and sending the keys to a browser handle. I am able to get a single key pressed by the user but not able to get the combination of keys pressed(such ...
1
vote
1answer
326 views

Keyboard hook: change the key code

I did hook the keyboard of some process. Now I need to change the key message sent to the process. For example: from lowercase to uppercase and opposite. How can I do this?
1
vote
3answers
259 views

Get global keyboard input with Java

How can I get what is being inputed in any program outside my java program.. Is there a way ? For example, I'm running my java program then I start typing in notepad, and I can see with my java ...
1
vote
2answers
85 views

Is there a .NET library for sending keystrokes, mouse clicks, mouse movements and other input? Similar to AutoHotKey but for .NET library use?

I'm looking to essentially write code similar to what I can do with AutoHotKey, only in .NET and C#, because it's a much more robust environment. I didn't know if there was a wrapper library ...
1
vote
4answers
462 views

Keyboard hook in c#

I want to develop a keystroke converter which will convert any keystroke into my local language. For example, if user type "a" then it will be replaced with it's corresponding unicode letter "\u0995" ...
1
vote
2answers
464 views

Did MS change something about keyboard hooks in Windows Vista or 7?

I've implemented keyboard hooks in several languages (AutoIt, C#) using SetWindowsHookEx and WH_KEYBOARD_LL. I also know of a couple of C++ programs that have the same issue. I didn't post any code ...
1
vote
0answers
337 views

some keyboard/mouse events cant be caught-xlib programming

I have a problem with this program. It lists the current windows along with their window IDs, that are running on the system. Result is that for a particular window ID that i entered, I got an odd ...
1
vote
2answers
203 views

Multiple keyboard hooks in .NET and Delphi

I have an application with both .NET and Delphi components I register to a keyboard hook (with SetWindowsHookEx) in both components. I first register in .NET, and later in Delphi. The problem is, the ...
1
vote
3answers
1k views

Global keyboard hook with C++

I've already saw many tutorials and articles about hooking, yet I don't quite understand it. Mainly because every single example uses different solution. I know I will have to implement something ...
1
vote
1answer
68 views

why is this function failing?

am trying to understand windows hooks by writing a few keyboard hooks. i have a function, bool WriteToFile(WPARAM keyCode, char * fileName) { ofstream fout("filename"); if(fout.is_open()) ...
1
vote
1answer
706 views

How do you implement global keyboard hooks in Mac OS X?

I know this can be done for Windows and that XGrabKey can be used for X11, but what about Mac OS X? I want create a class that allows setting shortcut keys that can be invoked even when the ...
1
vote
1answer
317 views

Capturing Ctrl+Shift+Esc Before Task Manager Does

I'm using the Windows API (SetWindowsHookEx) to capture keyboard events. I would like to pass the Ctrl+Shift+Esc combination to my application for processing but suppress Task Manager appearing. ...

1 2 3