Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: How to print a document

From: moeller_thorsten:gmx at: 12-Jun-2001 10:25

Hi Scott,fellow Rebolers, i ran into the same problem as Francois a while ago. OK, Rebol is a messaging language per definition, but that should not exclude printing in all environments. I was *NOT* able to get the %//prn stuff to work for me as i don't have an local attached printer. I only have network-printer at my service, but they didn't care about any printing command from my W2K box at all. So what can i do? Telling the users, sorry you can Mail your results anywhere, but printing? No, sorry. And the App has lost before coming to live. Poeple want to print out things today as in the past, necessary or not, regardless what the future will bring. Andrew made a neat little tool for printing, but what does it help with no local printer. OR is it a W2K problem? No, W98, same problem! In many companies there are lots of network-printers, which could be used. I wondered why this is not a problem for other programmers? Any comments out there? Thorsten -----Ursprüngliche Nachricht----- Von: [rebol-bounce--rebol--com] [mailto:[rebol-bounce--rebol--com]]Im Auftrag von GS Jones Gesendet: Montag, 11. Juni 2001 23:32 An: [rebol-list--rebol--com] Betreff: [REBOL] Re: How to print a document From: François Jouen
> Hi, > I've just discovered Rebol and I'm very impressed > by this language.
Yes, it is a neat language.
> However I can't find any information how to print a text > document to a printer. >From windows, you can use:
write %//prn "Hello, World!" or, for larger documents mydoc: {Hello, really big World!} write: %//prn mydoc --Scott Jones