Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USE your.dbf
GO Bottom
SKIP 1
? RECNO(), RECCONT()
GOTO RECNO()
ON ERROR ?? ERROR(), MESSAGE()
USE foxcode.dbf
GO Bottom
? EOF(), RECNO(), RECCOUNT() && output .F., 1008, 1008
SKIP 1
? EOF(), RECNO(), RECCOUNT() && output .F., 1009, 1008
? "GOTO RECNO():"
GOTO RECNO()
? "SKIP 1:"
SKIP 1
IF NOT EOF()
SKIP 1
ELSE
SKIP -1
ENDIF
IF NOT EOF()
SKIP 1
ENDIF
*
IF EOF()
SKIP -1
ENDIF
Mike Y. said:Code:IF NOT EOF() SKIP ENDIF
SKIP
IF EOF()
SKIP -1
ENDIF
* first botton:
Locate
this.RefreshForm()
* previous button:
IF NOT BOF()
SKIP -1
ENDIF
this.RefreshForm()
* next button
IF NOT EOF()
SKIP
ENDIF
IF EOF()
SKIP -1
ENDIF
this.RefreshForm()
* last botton:
Go Bottom
this.RefreshForm()