|
-
Aug 27th, 2005, 12:53 AM
#1
Thread Starter
Addicted Member
[RESOLVED] Textbox Multiline
How would I add multilines in a text box with code, I have multilines enabled.
Example
Text1.Text = "1,2,3"
How can I make it display on the text box
1
2
3
-
Aug 27th, 2005, 12:56 AM
#2
Re: Textbox Multiline
Like this.
VB Code:
Text1.Text = "1" & VBCRLF & "2" & VBCRLF & "3"
-
Aug 27th, 2005, 12:57 AM
#3
Thread Starter
Addicted Member
-
Aug 28th, 2005, 02:12 AM
#4
Re: [RESOLVED] Textbox Multiline
Or you can use vbNewLine which is a platform dependent constant.
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
|