Linking the ENTER key to a Button on a Form?

J

Jason Paris

Hi folks,

I'm creating a User Form in Excel. It includes a Text Box and a
number of buttons.

When the user types into the Text Box and (instinctively) presses
ENTER, is there a way to simulate the clicking of a button? In other
words, can ENTER - when pressed from the Text Box - be used to trigger
the code behind a button?

Many thanks,

Jason Paris
 
T

tissot.emmanuel

Hi,

Your textbox name is TextBox1, your button name is btnOK:

Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal
Shift As Integer)
If KeyCode = 13 Then btnOK_Click
End Sub

Private Sub btnOK_Click()
MsgBox "OK launched by ENTER"
End Sub

Regards,

Manu/
 

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

Top