home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 23.4 MEMODISP()
- Author: Joe Booth
- 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 memodisp(cmemo)
- local oldscrn := savescreen(10,10,20,60)
- @ 10,10 to 20,60 double // Draw a box
- memoedit( cMemo,11,11,19,59,.F.,.F. ) // Display the memo
- inkey(500) // Wait for any key
- restscreen(10,10,20,60,oldscrn)
- return nil
-
- // end of file CHP2304.PRG
-