home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
database
/
billing.zip
/
REINDEX.PRG
< prev
next >
Wrap
Text File
|
1986-11-10
|
527b
|
14 lines
use taskunit index taskdate
set date ansi
? " reindexing task records on client code and date"
index on str(c_code,3,0)+dtoc(taskdate) to taskdate
set date american
* if you leave date american, you have to do it this way
*index on str(c_code,3,0)+substr(dtoc(taskdate),7,2)+substr(dtoc(taskdate),1,2)+substr(dtoc(taskdate),3,2) to taskdate
use client index cltcode,cltname
* cltcode=str(c_code,3,0); cltname=c_name
? " reindexing client records on client code & name"
reindex
return