Hi All,
I have a text box that I have set to a multi-line box. How do I code my application so that I append to the next line within the text box.
Currently when I have multiple things writing to the box, they overwrite one another.
Printable View
Hi All,
I have a text box that I have set to a multi-line box. How do I code my application so that I append to the next line within the text box.
Currently when I have multiple things writing to the box, they overwrite one another.
Hi
did you use & to concatenate the strings?
Show some code Giraffe, it usually helps clarify what's going wrong.
Anyway, you probably want to check out the append method of the textbox:
vb Code:
Me.TextBox1.AppendText("Text to append here")
thanks everyone. both your suggestions work great!