Results 1 to 6 of 6

Thread: How to do a Enter or Go to next line in a TextBox

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2004
    Posts
    14

    How to do a Enter or Go to next line in a TextBox

    hi Can anyone pls advise on the subject?

  2. #2
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    Is the MultiLine property of the TextBox set to True?
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  3. #3

    Thread Starter
    New Member
    Join Date
    Jan 2004
    Posts
    14
    Hi , Thanks for replying

    I have set the multiline property to true, But wats the command to go to the next line.

  4. #4
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    VB Code:
    1. Text1.Text = Text1.Text & vbCrLf
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  5. #5

    Thread Starter
    New Member
    Join Date
    Jan 2004
    Posts
    14
    Thanks it helps

  6. #6
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    Text1.SelStart = Len(Text1.Text)


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