Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Error 1705 Access denied
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 5
Miscellaneous
Thread ID:
01297960
Message ID:
01297977
Views:
22
>Hi All,
>
>We are running some foxpro programs automatically in the weekend w/o supervision. We are ingoring and logging all errors. Usually there are no errors, but last week we encountered a couple of 1705 errors. So we suspect that these errors happened at a moment that there happened a backup of the directories including the dbf files.
>
>First, could this be possible? If so, how to solve this? Is it possible that when this error happens that the program could be suspended for some minutes ande resume?
>
>Thanks beforehand.

Something like

llLoop = .t.

DO WHILE llLoop

TRY
USE some table && if use fails then catch
llLoop = .f.
CATCH
WAIT WINDOW "Error 1705" TIMEOUT 5 && ie wait 5 seconds
ENDTRY

ENDDO

Jon
Previous
Reply
Map
View

Click here to load this message in the networking platform