|
Hi... I am using windows application and i need to set Shortcut key for Form. i need to set ( ctrl+alt+shift) hot keys i can able to set Two key option but i cant proceed with three keys. private void Utility_KeyPress(object sender, KeyPressEventArgs e) { //MessageBox.Show(e.KeyData.ToString()); if (e.KeyData.ToString() == "ShiftKey, Control, Alt") { MessageBox.Show("Success"); } } private void Utility_KeyDown(object sender, KeyEventArgs e) { if (e.Modifiers.ToString() == "Shift, Control, Alt" && e.KeyValue == 16) { MessageBox.Show("Success"); } } i try this ...but it is not use ful... kindly help me..... Thanks in Advance U.D.Raamkumar
RaamkumarDhandapani |