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

  1. /*
  2.    Listing 16.5  Creating indexes on a network
  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. use CUSTOMER shared new
  12. if ! file("cust_1.ntx")
  13.    index on customer->id_code to cust_1
  14.    use
  15.    use CUSTOMER shared new
  16. endif
  17. set index to cust_1
  18.  
  19. // end of file CHP1605.PRG
  20.