Is there any way to prevent VB from adding an extra line after writing text like this:
VB Code:
  1. Open App.Path & "\Test.txt" For Output As #1
  2. Print #1, "My Text Is Here, But A Line Will Be Inserted After It"
  3. Close #1
When I use something like the above code, an extra line is inserted after that text, but I dont want it to be there. Any Suggestions?