Hello everybody!
I have a question about EOF.
If I create a blank file and then read this with "INPUT", this works without error message:
OPEN "c:\temp\test.txt" FOR OUTPUT AS #1: CLOSE
OPEN "c:\temp\test.txt" FOR INPUT AS #1
DO WHILE NOT EOF(1)
LINE INPUT #1, zeile$
LOOP
CLOSE #1
If I do the same thing with
OPEN "c:\temp\test.txt" FOR BINARY AS #1
I get the error message "Input past end of file".
Can someone tell me how to write the DO-LOOP so I do not run into the EOF error?
Christian