Desktop Functions: Smart Device Functions:
|
Search Results for "registerhotkey" in [All]user32
static extern TODO RegisterHotKeyaspx(TODO);
Declare Function RegisterHotKeyaspx Lib "user32.dll" (TODO) As TODO
static extern bool UnregisterHotKey(IntPtr hWnd, int id);
Declare Auto Function UnregisterHotKey Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal id As Integer) As Integer
Declare Auto Function RegisterHotKey Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal id As Integer, _
Declare Auto Function UnregisterHotKey Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal id As Integer) As Integer
UnregisterHotKey(Me.Handle, hotKeyID)
RegisterHotKey(Me.Handle, hotKeyID, 0, Keys.Escape)
private static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc);
private static extern bool UnregisterHotKey(IntPtr hWnd, int id);
public static void RegisterHotKey(Form f, Keys key)
RegisterHotKey((IntPtr)f.Handle, keyId, modifiers, (int)k);
public static void UnregisterHotKey(Form f)
UnregisterHotKey(f.Handle, keyId); // modify this if you want more than one hotkey
WindowsShell.RegisterHotKey(this, k);
WindowsShell.RegisterHotKey(this); Structures4: CAPTUREPARMS
/// You must call the RegisterHotKey function before specifying a keystroke that can abort
''' You must call the RegisterHotKey function before specifying a keystroke that can abort Constants5: WM
Enums
/// The WM_HOTKEY message is posted when the user presses a hot key registered by the RegisterHotKey function. The message is placed at the top of the message queue associated with the thread that registered the hot key.
'''The WM_HOTKEY message is posted when the user presses a hot key registered by the RegisterHotKey function. The message is placed at the top of the message queue associated with the thread that registered the hot key.
''' Posted when the user presses a hot key registered by the <c>RegisterHotKey</c> function. |