11-07-2023, 03:17 PM
(11-07-2023, 01:40 PM)SpriggsySpriggs Wrote: Huh. Didn't know we weren't doing a binary output on the file.
The current method:
Code: (Select All)
SUB idesave (f$)
ideerror = 6
OPEN f$ FOR OUTPUT AS #151
ideerror = 1
FOR i = 1 TO iden
a$ = idegetline(i)
PRINT #151, a$
NEXT
CLOSE #151
IdeSaveBookmarks f$
ideunsaved = 0
END SUB