home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP12.EXE / GETSTRIN.CH < prev   
Encoding:
Text File  |  1991-04-30  |  654 b   |  20 lines

  1. /*
  2.    Listing 12.17. Using the preprocessor to make GetString() easier to use.
  3.    Author: Craig Yellick
  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. #translate GETSTRING( [ AT <r> [, <c> ]] ;
  12.                       [ MESSAGE <msg> ] ;
  13.                       [ COLOR <clr> ] ;
  14.                       [ DEFAULT <def> ] ;
  15.                       [ PICTURE <pict> ] ;
  16.                     ) ;
  17.   => GetString(<r>, <c>, <msg>, <clr>, <def>, <pict>)
  18.  
  19. // end of file CHP1217.CH
  20.