Hot keys
-
In the project I am working on ,I have one exe running 24*7 on Kiosk and its size is FullScreen. I need to start one exe (login application)as soon as I press Alt+Ctrl+A key on keyboard.How can I do it?Any help please.It's urgent. Thank you.
-
In the project I am working on ,I have one exe running 24*7 on Kiosk and its size is FullScreen. I need to start one exe (login application)as soon as I press Alt+Ctrl+A key on keyboard.How can I do it?Any help please.It's urgent. Thank you.
-
Use event KeyDown :
private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if(e.KeyCode == Keys.A && (e.Control && e.Alt))
{
MessageBox.Show("Hello");
}
}My exe is running in the background so ,it is not having focus .So this solution does not work .I need a solution in which even if my exe is running in the background ,captures the hotkey combination and does it,s prdicede task.
-
My exe is running in the background so ,it is not having focus .So this solution does not work .I need a solution in which even if my exe is running in the background ,captures the hotkey combination and does it,s prdicede task.
Try this (C++): http://www.ragestorm.net/snippet?id=65