MoveNext Method

The MoveNext method on a Recordset object moves to the next record in a specified Recordset object and makes that record current.

recordset.MoveLast
 

Parameters

None.

Remarks

The MoveNext method is used to to move the current record position one record forward (toward the bottom of the recordset). If the last record is the current record and the MoveNext method is invoked, ADO sets the current record to the position after the last record in the recordset (the EOF property is set to True). An attempt to move forward when the EOF property is already True generates an error.