You could try
Private Sub TextBox1_KeyPress(sender As System.Object, e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
TextBox2.AppendText(e.KeyChar)
End Sub
This would also allow you to filter out certain keys like backspace.