Click to See Complete Forum and Search --> : textbox


Silv
February 28th, 2000, 11:05 AM
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 !

Lothar Haensler
February 28th, 2000, 11:22 AM
msgbox "this is line one" & vbCRLF & "this is line two"

Cakkie
February 28th, 2000, 11:56 AM
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
slisse@planetinternet.be

The best way to escape a problem, is to solve it.