home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 23.6 MEMOEDIT idle screen display
- 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
- */
-
-
- #include "MEMOEDIT.CH"
- #include "INKEY.CH"
-
- function ME_UDF( me_mode,me_row,me_col )
- if me_mode = ME_IDLE // MEMOEDIT.CH (Mode 0)
- @ 2,50 say me_row pict "9999"
- @ 2,60 say me_col+1 pict "9999" // Columns start at 0
- @ 2,70 say time()
- endif
- return 0
-
- // end of file CHP2306.PRG
-