Hi, I am trying some very simple file writing, bt am having problems. The following code fragment works ok, but in the saved file, something appears before my text in the saved *.txt file (could be a carriage return and a TAB):
this$="Hello World!"
fileout=WriteFile("test.txt")
WriteString(fileout,this$)
CloseFile(fileout)
Any ideas why, and what I can do to get rid of it?
Thanks.
this$="Hello World!"
fileout=WriteFile("test.txt")
WriteString(fileout,this$)
CloseFile(fileout)
Any ideas why, and what I can do to get rid of it?
Thanks.