home *** CD-ROM | disk | FTP | other *** search
- * Function: MemoPrn
- * Author: Ray Love and Laurie Miller
- * Version: Clipper Summer 87
- * Copyright (c) 1988 Nantucket Corp.
- *
- * Purpose: To print text formatted.
-
- FUNCTION MemoPrn
- PRIVATE text, width, line
- PARAMETER text, width
-
- FOR line = 1 TO MLCOUNT(text,width)
- ? MEMOLINE(text,width,line)
- NEXT
- RETURN ""