* skip forward
LPARAMETERS tBottom
LOCAL llOK, lnOldSelect, lcPrimTable
llOK = .T.
WITH this
IF !thisform.lCanNavigate
RETURN
ENDIF
.saveForm()
lnOldSelect = SELECT()
IF !EMPTY(.cPrimairytable)
.beforeskip()
SELECT (.cPrimairyTable)
IF tBottom
GO BOTTOM
ELSE
IF !EOF()
SKIP IN (.cPrimairytable)
ENDIF
ENDIF
IF EOF()
GO Bottom
=.message(MSG_LAST_REC,WHITE,BLACK,.Left,.width,.height)
ENDIF
.afterskip()
.refreshform()
ENDIF
SELECT (lnOldSelect)
ENDWITH