home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP07.EXE / CHP0705.CH < prev    next >
Encoding:
Text File  |  1991-04-30  |  1.2 KB  |  27 lines

  1. /*
  2.    Listing 7.5 Alias Expressions
  3.    Author: Greg Lief
  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. #command SEEK <xpr> [ALIAS <a>] => [<a> ->] ( dbSeek(<xpr>))
  12. #command GOTO <n>    [ALIAS <a>] =>  [<a> ->] ( dbGoto(<n>) )
  13. #command GO <n>      [ALIAS <a>] =>  [<a> ->] ( dbGoto(<n>) )
  14. #command GOTO TOP    [ALIAS <a>] =>  [<a> ->] ( dbGoTop() )
  15. #command GO TOP      [ALIAS <a>] =>  [<a> ->] ( dbGoTop() )
  16. #command GOTO BOTTOM [ALIAS <a>] =>  [<a> ->] ( dbGoBottom() )
  17. #command GO BOTTOM   [ALIAS <a>] =>  [<a> ->] ( dbGoBottom() )
  18. #command CONTINUE    [ALIAS <a>] =>  [<a> ->] ( dbContinue() )
  19. #command APPEND BLANK [ALIAS <a>] => [<a> ->] ( dbAppend() )
  20. #command UNLOCK      [ALIAS <a>]  => [<a> ->] ( dbUnlock() )
  21. #command PACK        [ALIAS <a>]  => [<a> ->] ( __dbPack() )
  22. #command ZAP         [ALIAS <a>]  => [<a> ->] ( __dbZap() )
  23. #command DELETE      [ALIAS <a>]  => [<a> ->] ( dbDelete() )
  24. #command RECALL      [ALIAS <a>]  => [<a> ->] ( dbRecall() )
  25.  
  26. // end of file CHP0705.CH
  27.