home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP23.EXE / CHP2306.PRG < prev    next >
Encoding:
Text File  |  1991-04-30  |  603 b   |  24 lines

  1. /*
  2.    Listing 23.6  MEMOEDIT idle screen display
  3.    Author: Joe Booth
  4.    Excerpted from "Clipper 5: A Developer's Guide"
  5.    Copyright (c) 1991 M&T Books
  6.                       501 Galveston Drive
  7.                       Redwood City, CA 94063-4728
  8.                       (415) 366-3600
  9. */
  10.  
  11.  
  12. #include "MEMOEDIT.CH"
  13. #include "INKEY.CH"
  14.  
  15. function ME_UDF( me_mode,me_row,me_col )
  16. if me_mode = ME_IDLE      // MEMOEDIT.CH  (Mode 0)
  17.    @ 2,50 say me_row   pict "9999"
  18.    @ 2,60 say me_col+1 pict "9999"  // Columns start at 0
  19.    @ 2,70 say time()
  20. endif
  21. return 0
  22.  
  23. // end of file CHP2306.PRG
  24.