Userform Return Key Behaviour

J

JoePineapples

Is it possible to change the behaviour of the return button within
textbox?

What I would like is, once the return button is pressed, it starts
new line in the textbox rather than it moving to the next textbo
within the form
 
J

Jim Rech

Set the text box's EnterKeyBehavior property to True. This requires that
the MultiLine property is also True.

--
Jim
|
| Is it possible to change the behaviour of the return button within a
| textbox?
|
| What I would like is, once the return button is pressed, it starts a
| new line in the textbox rather than it moving to the next textbox
| within the form.
|
|
|
|
| --
| JoePineapples
 
Top