Hello, i'm working on a simple program where i can enter a name and number and it will save it to notepad .txt file. I have everything figured out up until actually saving the text i enter. what code do i use to do this, in the program i have a "is this correct?" last question with a yes or no button answer, when the user clicks yes i want the program to take textbox1.text and maskedtextbox1.text and write it to a .txt file. Is this even possible? here's the "yes" button code.
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Button1.Visible = False
Button2.Visible = False
Label5.Visible = False
Label3.Text = "Your information has been saved."
Label4.Text = ""
End Sub