C Sharp Keydown short cut problem CTRL+S getts fired when S is pressed

Contributor
25Apr2010,13:52   #1
Mr.President's Avatar
Code:
 
  if
 (e.KeyCode == Keys.S && e.Modifiers == Keys.Control)

   {

    a_gui.Search.frmItemSearch px = new
 a_gui.Search.frmItemSearch();

    if
 (px.ShowDialog() == DialogResult.OK)

    {

     cboMet.SelectedValue = b_bis.material_bis.smid;<b

     this
.ActiveControl = cboMet;<br/>

    }

   }
I am trying to use the CTRL + S key to call a dialog box in a textbox's keydown event but when I press "S" automatically the dialog box opens ?

How do I assign CTRL + S short cut for that text box ?
Go4Expert Founder
25Apr2010,14:44   #2
shabbir's Avatar
Check Modifiers and see why it is matching with Keys.Control