Results 1 to 3 of 3

Thread: Please help. I need some help on a label question........

  1. #1

    Thread Starter
    Addicted Member Smie's Avatar
    Join Date
    Jun 1999
    Location
    Columbus, OH
    Posts
    249

    Post

    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!

  2. #2
    New Member
    Join Date
    Nov 1999
    Location
    MD,USA
    Posts
    13

    Post

    use vbCrLf inside of the label which puts the symbol you want. example:

    lblTest="Hello" & vbCrLf & "There"


  3. #3
    Addicted Member
    Join Date
    Jul 1999
    Location
    Portland, OR.
    Posts
    226

    Post

    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
  •  



Click Here to Expand Forum to Full Width