home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 554b.lha / CheckPrt / Test < prev   
Encoding:
Text File  |  1991-09-10  |  376 b   |  20 lines

  1. failat 20   ; CheckPrt returns 10 if printer is not selected or off and
  2.             ; 5 if it is busy
  3. CheckPrt
  4. IF ERROR
  5.     echo " Sorry, but your printer seems to be off or not selected"
  6.     echo " "
  7.     SKIP END
  8. ENDIF
  9.  
  10. CheckPrt
  11.  
  12. IF WARN
  13.     echo " Wait a little moment, your printer is busy "
  14. ELSE
  15.     echo " OK, your printer seems to be available"
  16. ENDIF
  17.  
  18. LAB END
  19. FAILAT 10
  20.