Whenever I go to save files with this code:

VB Code:
  1. Sub SaveText(txtSave As TextBox, Path As String)
  2.     Dim TextString As String
  3.     On Error Resume Next
  4.     TextString$ = txtSave.Text
  5.     Open Path$ For Output As #1
  6.     Print #1, TextString$
  7.     Close #1
  8. End Sub

It adds the right data but at the very end it adds a vbNewLine! This messes up everything and i must prevent it from doing that.

Example, if i try to save "hello" to a file, it adds this:

"hello
"

big problem! can this be solved?