[REBOL] Re: Using a printer in Windows
From: izkata:aol at: 16-Apr-2002 19:58
Why don't you just use: printer: func [ text [file! string!] ][ if file? text [text: read text] write %printing.html rejoin [{<HTML> <BODY onLoad=window.print> } text { </BODY> </HTML> ] Or something like that. I'm not sure if the onLoad function is window.print, or if I need something else to make it work - something similar is what I used to use. Daniel S.