Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Infrequent error on index
Message
 
 
To
15/05/2006 10:59:32
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01121907
Message ID:
01121918
Views:
8
>Hi Naomi. Thanks. Will that keep them from getting the "file already exists" question?

I hope it does. Have you been able to reproduce the problem in your development environment? Also don't forget to clean up the temp directory. I've added the following procedure just yesterday (we found we missed it):
local lcTempDir, lnFiles, lnI, loErr, lcError
lcTempDir = addbs(sys(2023))
local array laFiles[1]
lnFiles = adir(laFiles, m.lcTempDir + "*.*")

for lnI = 1 to m.lnFiles
    try
    	delete file (m.lcTempDir + laFiles[m.lnI,1]) 
    catch to loErr	
*!*		   	lcError = Log_Error(m.loErr)
*!*		   	=ErrorMsg(m.lcError)	   	
    endtry
next
>
>As for the "style attribute", it is probably due to copying and pasting or something. This reply contains no copying so we will see.
>
>Thanks again,
>John
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform