Basically i would like to know how to create a new line on a text box...i know this might sound confusing, but ill explain myself the best i can...
What im actually trying to do is this: With cmd1_Click() i want to get the text from Text1.Text and Text2.Text and put that information on Text3.Text...but here's the problem: the Text1.Text has to be on the first line, the Text2.Text on the second...
I've tried this:
Private Sub cmd1_Click() Dim X As String Dim Y As String X = Text1.Text Y = Text2.Text Text3.Text = "Sup " & X & " and welcome!" & Chr(13) & Chr(10) & Y & " hello again!" End Sub
Obviously this isn't the program i am creating, but i just simplified it...
(The Chr(13) and Chr(10) don't work, they leave a little || thing on the textbox...and searching through google i read a description which said: Its not possible to create a new line on a textbox...unfortunately the page was missing so i couldn't read it thouroughly.)
thank you and ill be waiting patiently for an answer
Edited by MaverickSidewinder, 26 November 2005 - 07:35 AM.