Ok I was trying to code a save option for my project, it's a spammer that I have created and I have made it to where people can have their own personal spam message and when they want to use it all they have to do is click a radio button and the text will appear in the text box.

Now like I said I want it to save, like they make their own customizable spamming options and then save it so they want have to continue typing in the message because that would defeat the purpose of my project.

Here is the code

TextBox2.Text = (TextBox2.Text)
RadioButton1.Text = (TextBox2.Text)
TextBox3.Text = (TextBox3.Text)
RadioButton2.Text = (TextBox3.Text)
TextBox4.Text = (TextBox4.Text)
RadioButton3.Text = (TextBox4.Text)
TextBox5.Text = (TextBox5.Text)
RadioButton4.Text = (TextBox5.Text)
TextBox6.Text = (TextBox6.Text)
RadioButton5.Text = (TextBox6.Text)

^
That is the code and to try and save it I coded

SaveSetting(RadioButton1.Text)
SaveSetting(RadioButton2.Text)
SaveSetting(RadioButton3.Text)
SaveSetting(RadioButton4.Text)
SaveSetting(RadioButton5.Text)

Though it wouldn't work unless i imputed this code
Private Sub SaveSetting(ByVal p1 As String)
Throw New NotImplementedException

But when i start the program it quits and says the " NotImplementedException" is unhandled:/

Any help would be appreciated