Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Message Pop up
Message
 
 
To
30/09/2004 06:48:10
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00943589
Message ID:
00947465
Views:
19
You can create a file in case of error and than check for it existence in the VFP app.
* Batch file
ECHO File blblbla is in use! > C:\temp\whatever.txt
...
* VFP
IF FILE("C:\temp\whatever.txt")
  = messagebox("Blablabla")
  ERASE ("C:\temp\whatever.txt")
ENDIF
>
>This will let me know a file is in use in the command window alright. But what if I run the batch ouside of the command window. How will I know it failed?
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform