Ok I have a textbox that when someone types in it another textbox will have the exact same text. Easy I know.

Code:
Private Sub TextBox9_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox9.TextChanged
        TextBox12.Text = TextBox9.Text
    End Sub
That works fine normally but I am using My.Settings on each text box that get loaded upon the form load. Is there anyway around this from not messing up?

For some reason it doesnt work properly if your using My.Settings but still would like to use the function.

Thanks.