home *** CD-ROM | disk | FTP | other *** search
- /* Convert_To_RTF
-
- Converts a document to RTF format
-
- Digita ARexx Script for Wordworth 5
- Copyright ©1996, Digita International Ltd.
-
- Created: 19 January 1996
- Author: MJ
- */
-
-
- OPTIONS RESULTS
-
-
- RequestFile TITLE "Select File to Convert to RTF"
- File = Result
-
- If (RC > 0) THEN
- Exit
-
- New
- Address Value Result
-
- Open FILENAME File
-
- File = File || ".RTF"
-
- SaveAs RTF NAME File
- Close FORCE
-