home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / bcklib2.zip / INDEX.PRG < prev    next >
Text File  |  1993-01-16  |  848b  |  28 lines

  1. /*
  2.     The source code contained within this file is protected under the
  3.     laws of the United States of America and by International Treaty.
  4.     Unless otherwise noted, the source contained herein is:
  5.  
  6.     Copyright (c)1990, 1991, 1992 BecknerVision Inc - All Rights Reserved
  7.  
  8.     Written by John Wm Beckner        THIS NOTICE MUST NOT BE REMOVED
  9.     BecknerVision Inc
  10.     PO Box 11945                      DISTRIBUTE ONLY WITH SHAREWARE
  11.     Winston-Salem NC 27116            VERSION OF THIS PRODUCT.
  12.     Fax: 919/760-1003
  13.  
  14. */
  15.  
  16. #include "beckner.inc"
  17.  
  18. FUNCTION Main(cFile, cIndex, cExpr)
  19.    IF cFile=NIL
  20.       ? "Syntax: INDEX <file> <indexfile> <expression>"
  21.       ?
  22.       QUIT
  23.    ENDIF
  24.    fShare(cFile)
  25.    iif(File(fExtNew(cIndex, "NTX")), fKill(fExtNew(cIndex, "NTX")),)
  26.    INDEX ON &(cExpr) TO (cIndex)
  27. ENDFUNCTION
  28.