|
-
Jan 3rd, 2000, 10:59 AM
#1
Thread Starter
Addicted Member
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!
-
Jan 3rd, 2000, 11:15 AM
#2
New Member
use vbCrLf inside of the label which puts the symbol you want. example:
lblTest="Hello" & vbCrLf & "There"
-
Jan 3rd, 2000, 11:22 AM
#3
Addicted Member
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
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
|