ADODC.EOF Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the current row position is after the last row in a Recordset.
public:
property bool EOF { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool EOF { get; }
[<System.ComponentModel.Browsable(false)>]
member this.EOF : bool
Public ReadOnly Property EOF As Boolean
Property Value
true
if the current row position is after the last row; otherwise, false
.
- Attributes
Remarks
The BOF and EOF
return values are determined by the location of the current row pointer if this pointer is valid. If either BOF or EOF
is true
, there is no current row, and any attempt to reference Recordset data causes an exception.
You can use the BOF and EOF
properties to determine whether an Recordset object contains rows or whether you have gone beyond the limits of an Recordset as you move from row to row.
Note
Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.