movePrev( )

Moves the current record position one record backward (toward the top of the AGDBSet object).

Interface

AGDBSet

IDL definition
boolean movePrev( );
ADO equivalent

movePrevious

JavaScript synopsis
dbset.movePrev( )
C synopsis
PODSBoolean AVmovePrev(AGDBSet* dbset);
Parameters
  • dbset   The AGDBSet object.

Returns

TRUE on success; FALSE otherwise.

Remarks

If the first record is the current record and you call the movePrev method, the AGDBSet interface sets the current record to the position before the first record in the AGDBSet object, where atbof( ) is TRUE.

See also

atbof( ), moveNext( )