home *** CD-ROM | disk | FTP | other *** search
- *********
- * Function : TOF
- * By : Ralph Davis
- * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
- *
- * Tests printer for top of form.
- * Useful for avoiding unnecessary form feeds with REPORT FORM
- *
- * For instance:
- * IF TOF()
- * REPORT FORM NOEJECT TO PRINT
- * ELSE
- * REPORT FORM TO PRINT
- * ENDIF
- *********
-
- FUNCTION TOF
- *
- RETURN (PROW() = 0)
- * End of function: TOF
-
-