home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / basic / QBFC100.ZIP / DEMO.BAT next >
Encoding:
DOS Batch File  |  1990-10-20  |  323 b   |  15 lines

  1. echo off
  2. echo ..... QBFCOMMS (QuickBASIC FOSSIL Comms) Demo .....
  3. if not exist x00.exe goto NoX00
  4. if not exist qbfcdemo.exe goto NoDemo
  5. x00.exe e
  6. qbfcdemo.exe
  7. goto End
  8. :NoX00
  9. echo X00.EXE must be in the current directory...
  10. goto End
  11. :NoDemo
  12. echo QBFCDEMO.EXE must be in the current directory...
  13. goto End
  14. :End
  15.