home *** CD-ROM | disk | FTP | other *** search
- /* Print_File
-
- Prints selected file.
-
- Digita ARexx Script for Wordworth 5
- Copyright ©1996, Digita International Ltd.
-
- Created: 19 January 1996
- Author: MJ
- */
-
-
- OPTIONS RESULTS
-
-
- Finished = 0
- DO While Finished = 0
-
- RequestFile TITLE "Select File to Print"
- File = Result
-
- IF (RC > 0) THEN
- Exit
-
- OldPort = Address()
-
- New
- Address Value Result
-
- Open FILENAME File
-
- Print
- Close FORCE
-
- Address Value OldPort
-
- RequestResponse PROMPT "Do you wish to print another file?"
- IF (RC > 0) THEN
- Finished = 1
- END
-