What are RegisterHotKeys and global keyboard hooks, and how do they work?
RegisterHotKeys
I want to make a key to get focused on my application\'s Form (when it\'s mini
Sample on how to use hot keys.
class myform : Form { public myform() { RegisterHotKey(Handle, id, modifiers, mykey); } protected override void WndProc(ref Message m) { if (m.Msg == 0x312) // this is WM_HOTKEY { Show(); } base.WndProc(ref m); } }