Results 1 to 3 of 3

Thread: Adding Line brakes to a text box

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Nov 1999
    Posts
    28

    Question

    Hi
    How do you add line brakes to a text box I've all ready tride this

    Text1.Text = Text1.Text & Chr(13)

    and this

    Text1.Text = Text1.Text & Chr(vbKeyReturn)



    The Multiline property is set to True. so how do I do this?


    Thanks!!!!

  2. #2
    Guest
    Code:
    Text1.Text = Text1.Text & vbCrLf
    OR

    Code:
    Text1.Text = Text1.Text & vbNewLine

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Nov 1999
    Posts
    28

    Cool Cool

    That was fast, Thanks

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