ADO Stream Object: EOS Property

Home | About me | EXCEL VB Programming (XL97-2003) | ACCESS Programming | EXCEL VB.Net Programming | EXCEL Spreadsheet Functions Material Management  |  Guestbook
 

ADO Stream Object: EOS Property

The EOS property returns a boolean value that indicates whether the current position is at the end of the stream. True indicates that the current position is at the end of the stream.

Tip: To set the current position to the end of the stream, use the SetEOS method.

Tip: To determine the current position of the stream, use the Position property.

Syntax

objStream.EOS

Example


If (objStream.EOS = false) Then
   objStream.SetEOS = objStream.Position
End If