|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
textbox help VB2005If 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 Add an Environment.NewLine (this might not be the correct spelling but
close - no dot.net access on this PC) to each line that you add to the multiline textbox. LS Show quoteHide quote "Ian Tedridge" <iantedri***@btinternet.com> wrote in message news:#VQ6f90CHHA.3228@TK2MSFTNGP03.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 > "Ian Tedridge" <iantedri***@btinternet.com> wrote in message Dim value As Stringnews:%23VQ6f90CHHA.3228@TK2MSFTNGP03.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 > Or, value = Constants.vbCrLf TextBox4.Text = TextBox1.Text & value & TextBox2.Text & value & TextBox3.Text > Or, Why do you assign the contstant to a string ? this will degrade the > Dim value As String > > value = Constants.vbCrLf > > TextBox4.Text = TextBox1.Text & value & TextBox2.Text & value & > TextBox3.Text performance of the app as this means that on every usage a scan takes place in the string table you would better use the contstant as is By the way i believe that environment.newline is the better way in terms of portability regards Michel Posseth [MCP] Show quoteHide quote "pvdg42" <pvdg42@newsgroups.nospam> schreef in bericht news:%231ldEA3CHHA.3660@TK2MSFTNGP02.phx.gbl... > > "Ian Tedridge" <iantedri***@btinternet.com> wrote in message > news:%23VQ6f90CHHA.3228@TK2MSFTNGP03.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 >> > Or, > Dim value As String > > value = Constants.vbCrLf > > TextBox4.Text = TextBox1.Text & value & TextBox2.Text & value & > TextBox3.Text > > Ian,
Or nicer, use a listbox Cor Show quoteHide quote "Ian Tedridge" <iantedri***@btinternet.com> schreef in bericht news:%23VQ6f90CHHA.3228@TK2MSFTNGP03.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 > Ian,
This is a 24hour 7 days up newsgroup. That despite of most forums, however it has not a 10 minute reponse rate for every message, therefore please wait a while. If you are using Outlook express, connect than direct to one of the microsoft newsservers as by instance news.microsoft.com and not to the newsserver of your provider, that will speed up your wait time. Cor Show quoteHide quote "Ian Tedridge" <iantedri***@btinternet.com> schreef in bericht news:%23VQ6f90CHHA.3228@TK2MSFTNGP03.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 >
While not starting a debate BUT
Syntax error in INSERT INTO statement User Control saving properties How to attach an exe to the debugger? question about opening SQL results in Excel from ASP.NET via XML PRINTER INFORMATION 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 |
|||||||||||||||||||||||