EOR Property
Description
Checks if the record cursor is after the last record.
Property type
Read-only property
Syntax
Visual Basic
Public Property EOR As Boolean
Remarks

EOR (End of Recordset) is true if the cursor is pointing to a position past the end of the recordset or if the recordset is empty. For example, if the cursor is on the last record and Next is called, EOR becomes true.

When EOR is true, an exception is thrown on any attempt to read data from the recordset.

See Also