Ric:

Thanks for your answer: it works all OK ! :-))

Perhaps there's no multiplatform approach to this problem, but I was just
wondering why the problem was not discussied in the Core User guide or in
the 'official guide'...
After all, it remains an essential feature ( just think about reports ...).
OK, you can generate a magnificent html page which you can print. But what
about it if you have 100 different reports to print (like I have). Does the
operator then have to execute 100 times the same print procedure ?... Lot of
work  ! Bad approach !

I hope RT will consider this problem, and bring a solution...

Regards,

Christophe


> -----Original Message-----
> From: Ric Shepard [SMTP:[EMAIL PROTECTED]]
> Sent: dinsdag 19 december 2000 19:52
> To:   [EMAIL PROTECTED]
> Subject:      [REBOL] Re: Network printing
> 
> Using REBOL/Command in a Windows type (e.g., peer to peer, NT server,
> SAMBA)
> network environment you can access network printer(s) by:
> 
> creating a printer connection
> 
>   >> call "NET USE LPTx \\SERVER\PRINTER"
> 
> echo to the printer
> 
>   >> echo %LPT1  print "This is a printer test"  echo none
> 
> or use a port
> 
>   >> ptr: open/lines %LPT1
>   >> insert tail ptr "This is line 1"
>   >> insert tail ptr "This is line two"
>   >> close ptr
> 
> or .... all the other 'port' variations ....
> 
> kill the printer connection
> 
>   >> call "NET USE LPT1 /DELETE"
> 
> HTH
> 
> 
> "CRS - Psy Sel/SPO, COUSSEMENT Christophe, CPN" wrote:
> > 
> > Hi Rebolians:
> > 
> > Does anyone know how I could get REBOL/Command print to a network
> printer ?
> > 
> > I tried:
> > 
> > >> p: open prn://CRSSRV002/CATPrint ====> this last is the network name
> of
> > the printer
> > ** Access Error: Invalid port spec: prn://CRSSRV002/CATPrint.
> > ** Where: p: open prn://CRSSRV002/CATPrint
> > 
> > Any suggestion ?
> > 
> > Regards,
> > 
> > Christophe
> > 
> > --
> > To unsubscribe from this list, please send an email to
> > [EMAIL PROTECTED] with "unsubscribe" in the
> > subject, without the quotes.
> 
> --
> Ric Shepard <[EMAIL PROTECTED]>
> Microcomputer/Network Specialist
> Alaska Department of Fish and Game
> -- 
> To unsubscribe from this list, please send an email to
> [EMAIL PROTECTED] with "unsubscribe" in the 
> subject, without the quotes.
-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to