Tagged Questions
The registerhotkey tag has no wiki summary.
36
votes
7answers
4k views
Find out what process registered a global hotkey? (Windows API)
As far as I've been able to find out, Windows doesn't offer an API function to tell what application has registered a global hotkey (via RegisterHotkey). I can only find out that a hotkey is ...
5
votes
2answers
916 views
Global hotkey with WIN32 API?
I've been able to set local hotkeys like this
RegisterHotKey(hwndDlg, 100, MOD_ALT | MOD_CONTROL, 'S');
how can I set the hotkey to be global?( I want it to be there even when my window is hidden)
...
5
votes
3answers
362 views
How to detect programmatically whether code is running in shared DLL or exe?
A have a C# class which simplifies the handling of global hot keys.
This class uses the Win32-API function RegisterHotKey() to register the hot keys.
According to MSDN this function needs an ID value ...
3
votes
1answer
289 views
C# Detecting Ctrl+V with RegisterHotKey but not intercepting it
I need to detect when a user presses Ctrl+V (regardless of window focus - my app will likely be minimised) but I must not stop the actual paste operation.
I have tried a few things: (I am ...
2
votes
3answers
155 views
Compile all projects hotkey
I have two projects in a project group that share same units(mostly all).I use both projects in order to test something I've written.
The problem: When I change a unit that is used by both projects ...
2
votes
1answer
720 views
How to capture CTRL + CTRL key presses in my Win32 application?
How would I capture the user pressing CTRL twice (CTRL + CTRL) globally. I want to be able to have my application window hidden and then make it visible when the user invokes it with the CTRL+CTRL key ...
1
vote
1answer
504 views
Register more than one hotkey with RegisterHotKey
I found this little piece of code to register an hotkey:
[DllImport("user32.dll")]
public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc);
protected ...
1
vote
2answers
209 views
Global hotkey doesn't work… please help
I need an activeX which handles global hotkey: Shift + B
The code below is supposed to do this when I call this ActiveX from IE.
I see the result of RegisterHotKey is true which means that the ...
0
votes
1answer
42 views
Global hotkey release (keyup)? (WIN32 API)
Is there a way to notice the release of a hotkey button registered with RegisterHotKey?
I get a WM_HOTKEY message every time I press the hotkey but I need to know when the key was released
0
votes
2answers
17 views
Missing reference to RegisterHotKey
I can't find on google what reference I must use to be able to use RegisterHotKey. What is it?
And while on the topic, should I use RegisterHotKey if I am trying to create an application which listen ...
0
votes
2answers
94 views
C# p/invoke to RegisterHotKey for the key combo ALT+TAB not working (returns 0)
I'm using the following code to intercept the ALT+TAB key sequence in my c# application.
Some relevant snippets:
[DllImport("user32.dll")]
private static extern bool RegisterHotKey(IntPtr hWnd, int ...
0
votes
0answers
145 views
Pass on RegisterHotkey
I have a few global hotkeys made with RegisterHotkey. However, in some run-time circumstances I want to "pass on" the hotkey, delegate it to the handler that would be normally called (like rethrowing ...
0
votes
2answers
210 views
Ask for Hotkey in Cocoa/Objective-C
I want to have a button which allows the user to pick a global hotkey. I stumbled upon stackoverflow and found some ways to register a hotkey, but none which allows me to let the user pick one. Is ...
0
votes
0answers
148 views
c# registerhotkey and unregister in win 7 64
I have this problem:
I made an app that needs to register an hotkey, I build the app with win xp and everything works fine, now I have this problem:
the first time I launch the app I register an ...
0
votes
2answers
436 views
Register hotkeys in .NET - combination of three/four keys
I got stuck.
Right now, I am using the following code to listen to hotkeys:
[DllImport("user32.dll")]
public static extern bool RegisterHotKey(IntPtr hWnd,
int id, int fsModifiers, int ...
0
votes
1answer
186 views
Custom Global Hotkey
I am trying to get the user defined global hot key for my application. Here is my application code,
user.rc
CONTROL "", IDC_MHOTKEY, HOTKEY_CLASS, WS_TABSTOP, 91, 86, 68, 14
function.cpp
...
0
votes
1answer
2k views
RegisterHotKeys and global keyboard hooks?
What are RegisterHotKeys and global keyboard hooks, and how do they work?
I want to make a key to get focused on my application's Form (when it's minimized) and then focus on a textbox, so from what ...