Reads specified number of characters from a text Stream object.
String = Stream.ReadText ( NumChars )
The ReadText method reads a specified number of characters, an entire line, or the entire stream from a Stream object and returns the resulting string.
If NumChar is more than the number of characters left in the stream, only the characters remaining are returned. The string read is not padded to match the length specified by NumChar. If there are no characters left to read, a variant whose value is null is returned. ReadText cannot be used to read backwards.
Note The ReadText method is used with text streams (Type is adTypeText). For binary streams (Type is adTypeBinary), use Read.
Applies To: Stream Object