-
I have a timer feeding a label information. But how would i command it to go a line down. Yes im confused, and by explaining it, your probally confused also. Like when your typing text in a normal textbox, and you press enter, you go down a line. How would I have a command that automatically goes a line down, and places the text.(without clearing the other text in the label.)
EG.
Label
-------------------
'Hello '
'Test '
'Hello '
'Test '
--------------------
Get it? Instead of having horizontal Hello Test Hello Test, they are vertical. Please Help!
-
use vbCrLf inside of the label which puts the symbol you want. example:
lblTest="Hello" & vbCrLf & "There"
-
Hi.
How about:
label1.Caption= "Helo1" & VbCRLF & "Test1" & "Helo2" & VbCRLF & "Test2"
Make sure the label is exbandable downward at design time.
I've never tried/tested this one though ;)