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

Discussion in 'C#' started by Mr.President, Apr 25, 2010.

  1. Mr.President

    Mr.President New Member

    Joined:
    Apr 25, 2010
    Messages:
    51
    Likes Received:
    1
    Trophy Points:
    0
    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 ?
     
  2. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    Check Modifiers and see why it is matching with Keys.Control
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice