void=dbMoveBy(distance:integer)
The function jumps n records ahead in the database.
ParametersParameter 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 - AuthorwareCallObject(mdb,"dbMoveBy"; 22)