What is, for you, the Enter key supposed to do.
If you have a monoline TextBox the Enter key has no meaning.
When you set your TextBox multiline the Enter key works fine.
If the Enter key is supposed to do something else, you can trap it with the TextBox KeyPress event and text if Asc(key) = 13.
Best regards.