object.AtEndOfLine
The object is always the name of a TextStream object.
The AtEndOfLine property applies only to TextStream files that are open for reading; otherwise, an error occurs.
The following code illustrates the use of the AtEndOfLine property:
Dim fs, a, retstring
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile("c:\testfile.txt", ForReading, False)
Do While a.AtEndOfLine
<> True
retstring = a.Read(1)
...
Loop
a.Close
AtEndOfStream Property | Column Property | Line Property
Applies To: TextStream Object