Capturing CTRL + S

  • Thread starter Thread starter Alex Glass
  • Start date Start date
A

Alex Glass

Can anyone explain why keypress events arent detected by my form if there
are text controls on it and how to set it up so the form will handle the
keypress events?

Thanks in advance..

-Alex
 
Well after testing this, using keypreview works for textboxes but not for
comboboxes... Is there another property that I need to set?

-Alex
 
That should work, make sure the DropDownStyle property is set to something
that accepts input.
 
If dropdownstyle = dropdownlist keypreview works, if dropdownstyle =
dropdown, it doesnt work...
I actually use both. Any idea how to make it work with
dropdownstyle.dropdown without having to create event handlers for each
individual control?

-Alex
 
Back
Top