MovePrevious - method of the AdoRecordset object
Description:
Move the current record position to the previous record of the
AdoRecordset object.
Syntax:
Empty MovePrevious()
Note:
If first record is the current record and you call
MovePrevious method, then
ADO sets the current record to the position before first record of the
AdoRecordset object and
BOF property is
true. An attempt to move backward if the
BOF property is already
true generates an error.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
oRs.MovePrevious();
oRs.MovePrevious