home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_PrintTo.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Print the file but first ask where to
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* where is the default print destination */
- getenvvar _ge_printer
- dest=result
-
- /* ask the user if this is correct */
- requeststring title """Print to...""" default """"dest""""
- if rc==0 then do
-
- /* store the destination, then print */
- dest=result
- putenvvar _ge_printer """"dest""""
- print
- end
-