Hello,
I have the simple code below to save text, but when I click the save btn
the form creates the file in the C drive, but it would not save what's in the
text box.
Dim sw As New IO.StreamWriter ("C:\SomeFile.t xt", True)
sw.WriteLine(tx t1.Text)
any suggestions on why it's not saving be great.
thanks for your help...
I have the simple code below to save text, but when I click the save btn
the form creates the file in the C drive, but it would not save what's in the
text box.
Dim sw As New IO.StreamWriter ("C:\SomeFile.t xt", True)
sw.WriteLine(tx t1.Text)
any suggestions on why it's not saving be great.
thanks for your help...
Comment