Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
ReadText Method
Type Property
METHOD: Stream::Read
Implemented in version 2.5
variant =
streamobject.
Read
(
NumBytes
)
The
Read
method is used to read an entire binary file or a specified number of bytes from a
Stream
object and to return the data as a variant.
This method is used exclusively for binary data type
Stream
objects. Please use the similar
ReadText
method for text data type
Stream
objects.
There is one optional parameter.
The optional
NumBytes
parameter is either the number of bytes to read or one of the
StreamReadEnum
constants. If you specify a number larger than the actual number of bytes available in the
Stream
, only the actual available bytes are read and no error is generated. A null value is returned if there are no bytes left to be read.
StreamReadEnum Constants
Constant
Value
Description
adReadAll
-1
Default, read from the current position to EOS
adReadLine
-2
Only read until the end of the current line
Code (VBScript):
Dim intNumBytes, varStreamRead
intNumBytes = 4096
...
varStreamRead = objStream.
Read
intNumBytes
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information