The move method of the Recordset class moves the position of the current record in a Recordset object. move has the following signatures:
move(int numRecords)
move(int numRecords, Object bmkStart)
Moves the position of the current record in a Recordset object.
public void move(int numRecords);
numRecords | An integer specifying the number of records the current record position moves. |
Moves the position of the current record in a Recordset object.
public void move(int numRecords, Object bmkStart);
numRecords | An integer specifying the number of records the current record position moves. |
bmkStart | A string or Variant that evaluates to a bookmark. You can also use an AdoEnums.Bookmark value. |