bpeirson
Structural
- Apr 7, 2003
- 147
How do I enter a carriage return or next line in a text box?
The code I have is this:
What I want is:
Chosen_items is the name of the text box. This code is in a loop which adds items into the box as the user chooses them.
Currently the items appear in a sequential line one after another, this is very hard to read.
All suggestions are appreciated.
The code I have is this:
Code:
Chosen_items.Value = Chosen_items.Value & " " & Qty_Box.Value & " Each " & Part_Box.Value
Code:
Chosen_items.Value = Chosen_items.Value & [COLOR=red yellow]{new line command here}[/color red yellow] & Qty_Box.Value & " Each " & Part_Box.Value
Chosen_items is the name of the text box. This code is in a loop which adds items into the box as the user chooses them.
Currently the items appear in a sequential line one after another, this is very hard to read.
All suggestions are appreciated.