Thanks for the info, but it would be nice if KiXtart could do something simple like this Qbasic example:-
[code]
' Remove Ctrl-Z(s) from Input file.
z$ = CHR$(26)
INPUT "Input file "; infile$
INPUT "Output file "; outfile$
OPEN infile$ FOR BINARY AS #1
OPEN outfile$ FOR OUTPUT AS #2
a$ = INPUT$(1, 1)
WHILE NOT EOF(1)
IF a$ <> z$ THEN
PRINT a$;
PRINT #2, a$;
END IF
a$ = INPUT$(1, 1)
WEND
CLOSE #1
CLOSE #2
END
[/code]

Are there restrictions in the programming language KiX is written in?

Regards, Bill
_________________________
Bill