View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Using the enter key

Hi SC,

Try:

'=============
Private Sub UserForm_Initialize()
Me.CommandButton1.Default = True
End Sub
'<<=============



---
Regards,
Norman



"sc" wrote in message
...
I have a textbox and two commandbuttons on a userform. One of the buttons
is
to unload the userform and the other is to add the contents from the
textbox
to a worksheet. I do not want to click the button everytime. I would
just
like to press the enter key to execute the code. I have looked every
where
to see how this is done but with no success. Any help will be much
appreciated.