|
-
May 30th, 2000, 06:07 PM
#1
Thread Starter
Member
i cannot get a enter/nextline to go into a textbox during runtime.
multiline property is on and in design mode i can put enters but i cant in runtime.
these are the things that i've tried:
text1.text = "line1" + chr(13) + "line2"
text1.text = "line1" + chr(10) + "line2"
text1.text = "line1" + chr(0) + "line2"
text1.text = "line1" & chr(13) & "line2"
text1.text = "line1" & chr(10) & "line2"
text1.text = "line1" & chr(0) & "line2"
text1.text = "line1"
text1.text = text1.text + "line2"
text1.text = "line1"
text1.text = text1.text & "line2"
it always comes out like this (in the textbox)
line1line2
no matter what i try i cant get it to work
remember multiline is on.
help me please!!!!!!!!!
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
|