home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1993 #2
/
Image.iso
/
clipper
/
bcklib2.zip
/
INDEX.PRG
< prev
next >
Wrap
Text File
|
1993-01-16
|
848b
|
28 lines
/*
The source code contained within this file is protected under the
laws of the United States of America and by International Treaty.
Unless otherwise noted, the source contained herein is:
Copyright (c)1990, 1991, 1992 BecknerVision Inc - All Rights Reserved
Written by John Wm Beckner THIS NOTICE MUST NOT BE REMOVED
BecknerVision Inc
PO Box 11945 DISTRIBUTE ONLY WITH SHAREWARE
Winston-Salem NC 27116 VERSION OF THIS PRODUCT.
Fax: 919/760-1003
*/
#include "beckner.inc"
FUNCTION Main(cFile, cIndex, cExpr)
IF cFile=NIL
? "Syntax: INDEX <file> <indexfile> <expression>"
?
QUIT
ENDIF
fShare(cFile)
iif(File(fExtNew(cIndex, "NTX")), fKill(fExtNew(cIndex, "NTX")),)
INDEX ON &(cExpr) TO (cIndex)
ENDFUNCTION