|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
vb2005 express textbox controlIf 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 "Ian Tedridge" <iantedri***@btinternet.com> wrote in message Here's one way:news:%23cdCtq0CHHA.652@TK2MSFTNGP02.phx.gbl... > 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 > Dim value As String value = Constants.vbCrLf TextBox4.Text = TextBox1.Text & value & TextBox2.Text & value & TextBox3.Text
While not starting a debate BUT
Syntax error in INSERT INTO statement PRINTER INFORMATION How to attach an exe to the debugger? question about opening SQL results in Excel from ASP.NET via XML User Control saving properties Newbie - MDI Question Getting the generated name attribute for use in JavaScript syntax to compare data from text field, when adding a record, to a field in a table for duplicates Blinking button |
|||||||||||||||||||||||