Why does the Print # statement in Output mode add an extra carriage return at the end? Is there a better way to write to text files? I'm not using a rich text box so I can't use the savefile method. Thanks in advance.
Printable View
Why does the Print # statement in Output mode add an extra carriage return at the end? Is there a better way to write to text files? I'm not using a rich text box so I can't use the savefile method. Thanks in advance.
putting a ; will supress the new line.
you could Put() the text to a fileCode:Print #1, "Hello ";
Print #1, "World"
------------------
Mark Sreeves
Analyst Programmer
[email protected]
A BMW Group Company
Thanks a lot. :)