Returns True if the current record position is after the last record; False otherwise.
Read-only property
variable = object.EOF |
Boolean
When you open a RecordSet that contains at least one record, the first record is the current record and both BOF and EOF are False.
When you open a RecordSet that contains no records, both BOF and EOF are True and RecordCount is zero.
Calling the MoveNext method when EOF is True will generate an error.