Results 1 to 2 of 2

Thread: txtbx

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2003
    Location
    Earth
    Posts
    60

    txtbx

    when the user types something in txt1 it automatically goes into txt2 when they click on a button. But how do you make it so the words are ontop of eachother? txt2 is multline. Thank in advanced.

  2. #2
    Hyperactive Member RealNickyDude's Avatar
    Join Date
    Nov 2002
    Location
    Watching you through the hidden camera :o
    Posts
    435
    Like this:

    VB Code:
    1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    2.         TextBox1.Text = TextBox1.Text & vbCrLf & TextBox2.Text
    3.     End Sub
    [vbcode]
    On Error GoTo Hell
    [/vbcode]:¬) Nicky : Why not try VBCodebook.NET.

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