PDA

Click to See Complete Forum and Search --> : Please help. I need some help on a label question........


Smie
Jan 3rd, 2000, 09:59 AM
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!

KingStu
Jan 3rd, 2000, 10:15 AM
use vbCrLf inside of the label which puts the symbol you want. example:

lblTest="Hello" & vbCrLf & "There"

Lyla
Jan 3rd, 2000, 10:22 AM
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 ;)