Search found 3 matches

by Splurge
Mon Mar 07, 2011 2:27 pm
Forum: General programming
Topic: WriteLine
Replies: 4
Views: 6614

Re: WriteLine

Andreas wrote:You have to use #MODE_READWRITE. #MODE_WRITE will always erase the old file.
Thanks, works great now!
by Splurge
Fri Mar 04, 2011 2:25 pm
Forum: General programming
Topic: WriteLine
Replies: 4
Views: 6614

Re: WriteLine

Thanks, but it still doesn't seem to work.
by Splurge
Thu Mar 03, 2011 4:57 pm
Forum: General programming
Topic: WriteLine
Replies: 4
Views: 6614

WriteLine

Having an issue with writing to a file. When I write a new line it is overwriting the entire contents. Just a simple:

OpenFile(1,S:test,#MODE_WRITE)
Seek(1,#EOF)
WriteLine(1,log$)

I must be missing something...