MoveLast - method of the PmaDatabase object
Description:
Move the current position to the end of the database table.
Syntax:
Boolean MoveLast()
Return value:
true - moving the current position was succesful
false - moving the current position failed (maybe the table is empty)
Example:
JavaScriptVBScriptSelect and copy to clipboard
var bLast = oDb.MoveLast();
Dim bLast
bLast = oDb.MoveLast()