Assigning keys

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

Is there a way to assign Esc key to an action say closing a form dialog?

Regards
 
John said:
Is there a way to assign Esc key to an action say closing a form
dialog?

Set the CancelButton property of the Form to the Cancel button. In the
button's click event write "me.close".
 
* "John said:
Is there a way to assign Esc key to an action say closing a form dialog?

Add a button to the form and assign it to the form's 'CancelButton'
property. Then set the button's 'DialogResult' property or add
'Me.Close' to the button's 'Click' event handler.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top