home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxcliser.zip / VXREXX.3 / SAMPLES / PRINTING / WORKER.VRX < prev   
Text File  |  1994-12-23  |  236b  |  12 lines

  1. /*:VRX         Main
  2. */
  3. Main:
  4.     signal on halt
  5.     parse arg printer, filename
  6.     ok = VRPrintFile( printer, filename )
  7.     call VRMethod "Application", "PostQueue", 0, 1,,
  8.                   "call PrintDone" ok
  9. halt:
  10. exit
  11.  
  12.