Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
With TextBox2
.ForeColor = Color.Red '///set the text colour to red
.Text = TextBox1.Text '/// add the text to the new textbox
End With
TextBox1.Text = "" '///clear the old textbox
End Sub