Microsoft® Visual Basic® Scripting Edition TextStream Object |
Scripting Run-Time Reference Version 2 |
Description
Facilitates sequential access to a file.
Remarks
In the following code, a is the TextStream object returned by the CreateTextFile method on the FileSystemObject:WriteLine and Close are two methods of the TextStream Object.Dim fso, MyFile Set fso = CreateObject("Scripting.FileSystemObject") Set MyFile= fso.CreateTextFile("c:\testfile.txt", True) MyFile.WriteLine("This is a test.") MyFile.Close