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

  1. /*
  2.    Listing 17.2  SETKEY()
  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. #include "INKEY.CH"
  12.  
  13. setkey( K_F1, { | cProc, nLine, cVar| help(cProc, nLine, cVar) })
  14. setkey( K_F2, { || Pop_calc() } )
  15. setkey( K_F3, { || Pop_calend() } )
  16. setkey( K_F4, { || Pop_while() } )
  17.  
  18. // end of file CHP1702.PRG
  19.