|
-
Feb 7th, 2000, 10:46 AM
#1
Thread Starter
Member
if you have a multi line text box how to you get it to write to the next line in that text box in code?
------------------
Mooose
-
Feb 7th, 2000, 11:46 AM
#2
Fanatic Member
Try this:
Text1.Text = "Line 1" & VbCrLf & "Line 2"
HTH
------------------
Visual Basic Programmer
------------------
PolComSoft
You will hear a lot about it.
[This message has been edited by QWERTY (edited 02-07-2000).]
-
Feb 8th, 2000, 12:23 PM
#3
Addicted Member
Or maybe
Text1.Text = "Line 1" & Chr(13) & "Line 2"
------------------
Wilhelm Tunemyr,
Sweden
[email protected]
"Dort, wo man Bücher verbrennt, verbrennt man am Ende auch Menschen"
Heinrich Heine (1797-1856)
Pravda zvítezi!
-
Feb 8th, 2000, 04:14 PM
#4
Conquistador
or even:
Code:
txt1.text = "Line 1" & chr$(10) & "Line 2"
i think...
------------------
david
Teenage Programmer
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|