Microsoft® Visual Basic® Scripting Edition AtEndOfStream Property |
| Language Reference |
|
Read-only property that returns True if the file pointer is at the end of a TextStream file; False if it is not.
object.AtEndOfStreamThe object is always the name of a TextStream object.
The AtEndOfStream property applies only to TextStream files that are open for reading, otherwise, an error occurs.The following code illustrates the use of the AtEndOfStream property:
Dim fs, a, retstring Set fs = CreateObject("Scripting.FileSystemObject") Set a = fs.OpenTextFile("c:\testfile.txt", ForReading, False) Do While a.AtEndOfStream <> True retstring = a.ReadLine ... Loop a.Close
file: /Techref/language/asp/VBS/VBSCRIPT/326.htm, 2KB, , updated: 1996/11/22 10:12, local time: 2024/12/6 09:54,
18.97.14.91:LOG IN
|
©2024 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://www.piclist.com/techref/language/asp/VBS/VBSCRIPT/326.htm"> Microsoft® Visual Basic® Scripting Edition </A> |
Did you find what you needed? |
PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.