home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 16.5 Creating indexes on a network
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- use CUSTOMER shared new
- if ! file("cust_1.ntx")
- index on customer->id_code to cust_1
- use
- use CUSTOMER shared new
- endif
- set index to cust_1
-
- // end of file CHP1605.PRG
-