home *** CD-ROM | disk | FTP | other *** search
- /* PrintFiles V0.91e Preferences - Arexx File */
-
- options results /* request results */
- if ~show(ports,'PRINTFILES')then do /* PrintFiles already running ? */
- address command 'printfiles' /* if not, attempt to launch it */
- address command 'sys:rexxc/WaitForPort PRINTFILES' /* wait...wait...wait */
- end /* */
- if ~(show(ports,'PRINTFILES')) then return 5 /* return 5 if we couldn't find PrintFiles */
-
- address printfiles
-
- insertdir 'SYS:' /* Default directory of FileRequester */
- savedir 'REXX:' /* Default directory of SaveRequester */
- 15cpi /* set pitch to condensed */
- draft /* set print quality to draft */
- page on /* print page count */
- time on /* print time */
- filename on /* print filename */
- line on /* print linennumbers */
- date on /* print date */
- 8li /* set 1/8 spacing */
- ff on /* print FormFeed after each file */
- fpage on /* print additional cr after each line */
- lmargin 0 /* set right margin */
- rmargin 128 /* set left margin */
- lines 80 /* number of lines per page */
- saveprefs '-cFWsRPiL' /* Saveprefs flags */
- /* With Comments */
- /* Without Filenames */
- /* Without OpenWindow-command */
- /* With Startup Code */
- /* Without Reset-command */
- /* Without Print-command */
- /* With Icon */
- /* Without Head/Footline */
- icon ignore /* ignore Icons */
- prog ignore /* ignore programs */
-