This is probably really easy..
I am writing to a text file using a statement such as
Write #1, "bla bla"
Everything in the text file is enclosed in speech marks e.g. "bla bla" how do you write to a file without those damn speech marks?
Thanks,
Alex
Printable View
This is probably really easy..
I am writing to a text file using a statement such as
Write #1, "bla bla"
Everything in the text file is enclosed in speech marks e.g. "bla bla" how do you write to a file without those damn speech marks?
Thanks,
Alex
you should use the PRINT statement instead of WRITE. :)
Thanks!