vb2005 express textbox control

I

Ian Tedridge

If I have 3 textboxes on a form plus 1 multiline textbox.

How can I add the text from textbox 1 to 3 to the multiline textbox ?

I can add the 3 textbox contents to one line of the multiline textbox, but
need each text line to appear on seperate lines.

this is driving me crazy, please help
 
P

pvdg42

Ian Tedridge said:
If I have 3 textboxes on a form plus 1 multiline textbox.

How can I add the text from textbox 1 to 3 to the multiline textbox ?

I can add the 3 textbox contents to one line of the multiline textbox, but
need each text line to appear on seperate lines.

this is driving me crazy, please help
Here's one way:

Dim value As String

value = Constants.vbCrLf

TextBox4.Text = TextBox1.Text & value & TextBox2.Text & value &
TextBox3.Text
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top