MoveNext - method of the AdoRecordset object
Description:
Move the current record position to the next record in the
AdoRecordset object.
Note:
If the last record is the current record and you call
MoveNext method, then
ADO sets the current record to the position after the last record of the
AdoRecordset object and
EOF property is
true. An attempt to move forward if the
EOF property is already
true generates an error.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
oRs.MoveNext();
oRs.MoveNext