I was making a Emailing program, when I came upon the idea of a "Remember Me" setup using a radio button. I was thinking it could save what one has typed in "textbox4","textbox5" and "textbox6". Could this be possible?
EDIT:
My friend had told me this method would work, it doesnt seem to:
Private Sub RadioButton1_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton1.CheckedChanged
TextBox4.Text = (TextBox4.Text)
TextBox5.Text = (TextBox5.Text)
TextBox6.Text = (TextBox6.Text)
End Sub