I have had to create an extra form for an old Foxpro 2.6
dos database. I am using:
SELECT DISTINCT Conref, Conref + ", " + STR(ProdQty) + ", " + Produce
FROM c:\temp\tempconx.dbf
INTO ARRAY unselected
ORDER BY Conref, ProdQty, Produce
To populate the array unselected. The problem is this seems to create some temp files for the array. If I rerun the form I get a file in use error. I have tried "RELEASE unselected"
in the cleanup section, but still have the same problem.
If I view the temp folder I can see the files appear as the array is created and disappear as the database .exe
file that runs the program is closed. I can then run the .exe
file again and run the form without the error.
Any idea, how to remove the array temp files without closing the .exe
file?
Thank You