Hi Dave,
Sorry I misunderstood.
I tried again with TextBox1 = Casing Normal, TextBox2 = Casing Upper , TextBox3 = Casing Lower
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox2.Text = TextBox1.Text
TextBox3.Text = TextBox1.Text
End Sub
Typing "asdFGH" in TextBox shows1 Upper and Lower respectively in Textbox2 and 3
Jay