home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 15.15. The NextRow() function.
- Author: Craig Yellick
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- function NextRow(howMany, leftMar, what)
- /*
- Move down specified number of rows,
- insert left margin and print specified thing.
- What to print is optional.
- */
- if what = nil
- what := ""
- endif
- @ prow() +howMany, leftMar say what
- return nil
-
- // end of file CHP1515.PRG
-