home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / editors / hypsh40c.arj / PGRES110.LZH / EXAMPLE.BAT next >
DOS Batch File  |  1991-04-15  |  382b  |  32 lines

  1. @echo off
  2. cls
  3. echo Example of use of PGR and PGRES
  4. echo  
  5.  
  6. PGR ?
  7. if errorlevel 1 goto :appl
  8.  
  9. echo  
  10. PGRES
  11.  
  12. PGR ?
  13. if errorlevel 1 goto :appl
  14.  
  15. echo PGRES could not be installed
  16. goto :end
  17.  
  18. :appl
  19. echo  
  20. echo Here I could have called an application.
  21. echo As an example, I use PGR:
  22. echo  
  23.  
  24. PGR
  25.  
  26. echo  
  27. echo And now to unloading PGRES:
  28. echo  
  29. PGRES -u
  30.  
  31. :end
  32.