home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / e / estat21.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1992-06-30  |  1KB  |  32 lines

  1. @echo off
  2. echo Note: this EASISTAT demonstration and the demonstration of EASIGRAF,
  3. echo the graph-drawing program, will run more quickly from a hard disk 
  4. echo than a floppy disk. We recommend that before running the 
  5. echo demonstrations you copy all the files supplied into a subdirectory
  6. echo of your hard disk and then run the demonstrations from there. If you 
  7. echo wish to do this then break out of this batch file now by pressing
  8. echo control-C...
  9. pause
  10.  
  11. echo EASISTAT loading, please wait...
  12. if not exist demo goto :error
  13. if not exist example.dat goto :error
  14. if not exist easistat.exe goto :error
  15.  
  16. easistat demo
  17. goto :end
  18.  
  19.  
  20. :error
  21. echo                            --
  22. echo            --- ERROR in EASISTAT demonstration ---
  23. echo To run this demonstration of EASISTAT you must have the following 3 files:
  24. echo DEMO
  25. echo EASISTAT.EXE
  26. echo EXAMPLE.DAT
  27. echo                           ------
  28. echo Please make sure they are all in your current working directory and that
  29. echo you are logged on to the correct disc drive. Then try again.
  30.  
  31. :end
  32.