home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d521 / checkprt.lha / CheckPrt / Test < prev    next >
Text File  |  1991-08-05  |  376b  |  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.