home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
clipper
/
nannws31.arc
/
MEMO_PRN.PRG
< prev
next >
Wrap
Text File
|
1988-08-09
|
333b
|
16 lines
* 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 ""