-
Another Quick Question:
When I write to an external file using the write statement, it always puts quotation marks at the beginning and end of the string... is something wrong with my code??
Example:
NameOfPerson = "John Jacob Jingleheimer Smith"
Write #1, NameOfPerson
In the text file, I'll see:
"John Jacob Jingleheimer Smith" -- WITH THE QUOTES! (grrr)
I'm trying to use this program to write HTML files, and its driving me nutz... any suggestions??
Are there other commands used to write to a file???
Thanks
<~~ Whisper ~~>
-
use the print statement instead of the write statement, it does not put any formatting
-
Use the Print# Statement if you don't want the quptation marks. Hope this helps.