Hi,
I've used this in VB 2008 and works:
Dim form2 As New Form2
form2.TextBox1.Text = Me.TextBox1.Text
form2.TextBox1.Enabled = True
form2.Show()
Me.Hide()
All you need to do is add a button and textbox in form1 and textbox in form2.
Put then this code into the button event.
However, if you really want to copy the entire textbox, location and size then Codeorder's code is better.