home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 15.16. The SameRow() 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 SameRow(colsOver, what, pict)
- /*
- Move over specified number of columns and
- print something, using optional picture.
- */
- if what = nil
- what := ""
- endif
- if pict = nil
- @ prow(), pcol() +colsOver say what
- else
- @ prow(), pcol() +colsOver say what picture (pict)
- endif
- return nil
-
- // end of file CHP1516.PRG
-