home *** CD-ROM | disk | FTP | other *** search
- 'program to run in DV window to properly print a file, goddammit
- cls
- input "What filename.ext would you like to print"; filnam$
- open filnam$ for input as #1
- width lprint 132
- while not EOF(1)
- line input #1, a$
- lprint a$
- wend
- print"Printer is finished."
- end
-
-