I am using this code for opening an application from C# keydown event
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F && e.Alt)
{
Process.Start(@"c:\ade.exe");
}
}
It's working perfectly, but when my windows form application is in working mode, I want to work it also when my app is minimized.