Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting out of a Method
Message
De
21/11/1997 10:55:50
 
 
À
20/11/1997 19:56:11
Edward Crawford
City Facilities Management
Glasgow, Royaume Uni
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00061522
Message ID:
00061606
Vues:
42
>>>I have a process that is done once a month that requires exclusive use of a table. I know of no way to check to see if a user on the network already has this table open, so what I do is in the Error Event I check the error code. If the error code states that the file can not be opened exclusively, I show a MESSAGEBOX() to the user telling them that someone has the file open,and they must close it to continue. The problem is, when they click the OK button on the MESSAGEBOX, the user is then presented with the file locate dialog. How do I stop this behavior as well as the further processing of the method?
>>>
>>>-Ed
>>
>>
>>Please show the code snippet.
>>:)
>
>SET SAFETY OFF
>USE oAppManager.TablePath + "phlog.dbf" EXCLUSIVE
>** an error 1705 will occur here if the file is in use
>
>****** Error Event Code ****
>
>IF nError = 1705
> MESSAGEBOX("Error Message Here", 64, "Problem Alert")
>
>ELSE
> lnAnswer = MESSAGEBOX("Alternate Error Message", 17, "ERROR")
> IF lnAnswer = 2
> CANCEL
> ENDIF
>ENDIF

Can You attempt an FLOCK() before opening the file?
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform