Category: Files
EndOfFile(fileHandle As Integer)
Boolean
Returns True when an open file has no more text data to read with ReadLine. This is the usual loop condition for reading a whole text file.
While Not EndOfFile(fileHandle)
line = ReadLine(fileHandle)
Wend