ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Delete enter key rectangles in a cell. (https://www.excelbanter.com/excel-programming/425079-delete-enter-key-rectangles-cell.html)

Maths1

Delete enter key rectangles in a cell.
 
I am using a Textbox on a form to enter data into a cell.

Code:
ActiveCell=UserForm1.TextBox1.Text

When the user presses ENTER in the TextBox small rectangles appear in the
cell.
How do I prevent this happening?

Thanks for any help!

OS is XP and Excel 2003

Peter T

Delete enter key rectangles in a cell.
 
It's very hard to suggest anything with so little information, eg what's the
state of MultiLine & WordWrap in the textbox and WordWrap in the cell, what
occurs when user presses Enter (normally that will simply exit the text
box), or is that control enter, where is the code (in which event), etc, etc

here's a long shot guess

ActiveCell = Replace(Me.TextBox1.Text, vbCrLf, vbLf)

Regards,
Peter T

"Maths1" wrote in message
...
I am using a Textbox on a form to enter data into a cell.

Code:
ActiveCell=UserForm1.TextBox1.Text

When the user presses ENTER in the TextBox small rectangles appear in the
cell.
How do I prevent this happening?

Thanks for any help!

OS is XP and Excel 2003




Maths1

Delete enter key rectangles in a cell.
 
Thank you for the prompt reply.

Your long shot was a direct hit - Fantastic!
The textbox EnterKeyBehaviour, MultiLine & WordWrap are set to TRUE and also
WordWrap in the cell. The user transfers the text to the Sheet using a
CommandButton click event.

Many thanks again

"Peter T" wrote:

It's very hard to suggest anything with so little information, eg what's the
state of MultiLine & WordWrap in the textbox and WordWrap in the cell, what
occurs when user presses Enter (normally that will simply exit the text
box), or is that control enter, where is the code (in which event), etc, etc

here's a long shot guess

ActiveCell = Replace(Me.TextBox1.Text, vbCrLf, vbLf)

Regards,
Peter T

"Maths1" wrote in message
...
I am using a Textbox on a form to enter data into a cell.

Code:
ActiveCell=UserForm1.TextBox1.Text

When the user presses ENTER in the TextBox small rectangles appear in the
cell.
How do I prevent this happening?

Thanks for any help!

OS is XP and Excel 2003






All times are GMT +1. The time now is 04:07 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com