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

  1.     // TBFrFrst.prg
  2.     //
  3.     // TBFwFirst() - goTopBlock function implementing general purpose
  4.     //               for and while condition
  5.     
  6.     FUNCTION TBFwFirst(bGoFirst, bWhile, bFor)
  7.     
  8.       Eval(bGoFirst)
  9.       DO WHILE !Eof() .AND. Eval(bWhile) .AND. !Eval(bFor)
  10.         SKIP
  11.       ENDDO
  12.     
  13.       IF !Eval(bWhile)
  14.         // no records match filter - could also be at eof already here
  15.         GOTO 0
  16.       ENDIF
  17.     
  18.     RETURN NIL
  19.