What is text stream object?

Showing Answers 1 - 3 of 3 Answers

me.seenu

  • Dec 6th, 2007
 

It facilitates sequential access to file.


The property and method arguments can be any of the properties and methods associated with the TextStream object. Note that in actual usage TextStream is replaced by a variable placeholder representing the TextStream object returned from the FileSystemObject.

Example
In the following code, a is the TextStream object returned by the CreateTextFile method on the FileSystemObject:
 Set fs = CreateObject("Scripting.FileSystemObject") Set a = fs.CreateTextFile("c:testfile.txt", True) a.WriteLine("This is a test.") a.Close 
WriteLine and Close are two methods of the TextStream Object.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions