P Philipp Sumi Jan 29, 2004 #2 Hi Claudiu Just place the following code into you form protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == (Keys.Control | Keys.C)) { MessageBox.Show("THIS IS IT"); return true; } return base.ProcessCmdKey (ref msg, keyData); } HTH Philipp
Hi Claudiu Just place the following code into you form protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == (Keys.Control | Keys.C)) { MessageBox.Show("THIS IS IT"); return true; } return base.ProcessCmdKey (ref msg, keyData); } HTH Philipp