home *** CD-ROM | disk | FTP | other *** search
- // TBFrEnd.prg
- //
- // TBForEnd() - goBottomBlock function implementing general purpose
- // for condition
-
- FUNCTION TBForEnd(bFor)
-
- GOTO BOTTOM
- DO WHILE !bof() .AND. !eval(bFor)
- SKIP -1
- ENDDO
-
- IF bof()
- // no records match filter
- GOTO 0
- ENDIF
-
- RETURN NIL