Dear all.

I have searched over 40 Youtubes and msdn to no avail.
I am trying to save more than one text box to a file, and of course load after.

Bla Bla

If DialogResult = DialogResult.OK Then
Dim SWriter As StreamWriter = New StreamWriter(SaveFileDialog.FileName)

SWriter.Write(TxtBx1.Text) comment 12345
SWriter.Write(TxtBx2.Text) comment absdr

SWriter.Close()
End If
Hope to save this in text file as 12345,absdr

Hope to load this back to the text boxes on load event. so TxtBx1.Text is 12345 and TxtBx2.Text is absdr

Would be fantastic to see the code / syntax of this.

Thanks.
Donovan