Quote Originally Posted by Hack
Show me what you did, and bold that line that causes the error.
VB Code:
  1. Private Sub cmd_save_Click()
  2. [B]Open "mytextfile.txt" For Append As #1  [/B]          
  3.  
  4. Print #1, TextBox.Text
  5. Close #1
  6. End Sub