KeyDown / KeyUp / KeyPress

  • Thread starter Thread starter Keith Smith
  • Start date Start date
Set the Form.KeyPreview to true and then handle the Form Keypress event.

Hope this helps

Chris
 
There are some key events that still get swallowed by controls even when
KeyPreview is true. If you really, really need to see all of these, you can
override the ProcessCmdKey() method in the form.

-Rachel
 
Back
Top