See Also
Applies to
Description
Read-only property that returns True if the file pointer is at the end of a TextStream file; False if it is not.
Syntax
object.AtEndOfLine
The object is always the name of a TextStream object.
Remarks
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
© 1996 by Microsoft Corporation.
file: /Techref/language/asp/vbs/vbscript/323.htm,
2KB, , updated: 1996年11月22日 11:12, local time: 2025年9月18日 11:27,
©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE.
Questions?<A HREF="http://techref.massmind.org/Techref/language/asp/vbs/vbscript/323.htm"> Microsoft® Visual Basic® Scripting Edition </A>
Did you find what you needed?
Welcome to massmind.org!
Welcome to techref.massmind.org!
.