-
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 !
-
Re: textbox
msgbox "this is line one" & vbCRLF & "this is line two"
-
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.