dbase iv creating index -
04-10-2007
, 04:49 PM
I'm moving a .prg file that worked on one computer to another and its
no longer working. It says the file already exists. I have it
running in a batch file and it stops when it displays the error. What
am I doing wrong.
Thanks,
Pete
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
erase industol.mdx
erase officeol.mdx
erase webol.mdx
use industol.dbf
index on city+stnm+str(stnum) tag address of industol.mdx
index on str(rent,10,2) tag rent of industol.mdx
index on stnm tag street of industol.mdx
close all
use officeol.dbf
index on city+stnm+str(stnum) tag address of officeol.mdx
index on str(rent,10,2) tag rent of officeol.mdx
index on stnm tag street of officeol.mdx
close all
use webol.dbf
index on city+stnm+str(stnum) tag address of webol.mdx
index on str(rent,10,2) tag rent of webol.mdx
index on stnm tag street of webol.mdx
close all
quit |