home *** CD-ROM | disk | FTP | other *** search
- // TBFwLast.prg
- //
- // TBFwLast() - goBottomBlock function implementing general purpose
- // for and while condition
-
- FUNCTION TBFwLast(bGoLast, bWhile, bFor)
-
- Eval(bGoLast)
- DO WHILE !Bof() .AND. Eval(bWhile) .AND. !Eval(bFor)
- SKIP -1
- ENDDO
-
- IF bof() .OR. !eval(bWhile)
- // No records match scope
- GOTO 0
- ENDIF
-
- RETURN NIL