home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a065 / 1.img / TBLIB.EXE / TBFREND.PRG < prev    next >
Encoding:
Text File  |  1992-03-09  |  369 b   |  19 lines

  1.     // TBFrEnd.prg
  2.     //
  3.     // TBForEnd() - goBottomBlock function implementing general purpose
  4.     //              for condition
  5.  
  6.     FUNCTION TBForEnd(bFor)
  7.     
  8.       GOTO BOTTOM
  9.       DO WHILE !bof() .AND. !eval(bFor)
  10.         SKIP -1
  11.       ENDDO
  12.  
  13.       IF bof()
  14.         // no records match filter
  15.         GOTO 0
  16.       ENDIF
  17.     
  18.     RETURN NIL
  19.