|
-
February 28th, 2000, 12:05 PM
#1
textbox
What i got is a simple question.
With a combo click control iam
showing a message in a text box below. But the message is a long one and i dont want it to show on one line only.
exemple:
rather than that :
"..............................................."
i would love to do :
"....."
"....."
"....."
How can i continue a message on a other line ?
Thanks in advance !
-
February 28th, 2000, 12:22 PM
#2
Re: textbox
msgbox "this is line one" & vbCRLF & "this is line two"
-
February 28th, 2000, 12:56 PM
#3
Re: textbox
or.. just set the multiline property of the textbox to true, this will break up a line when it's to long and place the rest of the message on the next line. Using this, you can also set the scrollbars property if you want.
Tom Cannaerts
[email protected]
The best way to escape a problem, is to solve it.
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
|