void=dbMoveBy(distance:integer)
The function jumps n records ahead in the database.

Parameters
Parameter of this function is distance. Distance equals how many records in the database we want to jump. If distance is >0 we go ahead, if it is <0 we go back.

Example - Director
global mdb
mdb.dbMoveBy(17)
mdb.dbMoveBy(-2)

Example - Authorware
CallObject(mdb,"dbMoveBy"; 22)