Re: CF sending data to a local printer?

2004-05-18 Thread Jas Panesar
You could probably whip up a quick VB COM object to run server side that uses the Printers object.Quickest way would be to use something like cf_pdf to create an unencrypted PDF file, then use some combination of acrobat/ghostscript to dump it to the printer you want. A great book for learning VB

CF sending data to a local printer?

2004-05-10 Thread Daniel Farmer
It's been requested that I create this form that when gets submitted sends the content to a printer ( in the persons place of business ). I've never done anything like that before. Was wondering if it was even possible. Thanks [Todays Threads] [This Message] [Subscription] [Fast

Re: CF sending data to a local printer?

2004-05-10 Thread Pete Ruckelshaus - CFList
This is not possible unless you use ActiveX or a client side Java applet.Trust me.We tried.The closest you can get is something like doing a body onload() event in _javascript_ and have it call the print() function; this would bring up the print applet, so it would require the user to click

Re: CF sending data to a local printer?

2004-05-10 Thread Charlie Griefer
ist [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, May 10, 2004 11:24 AM Subject: Re: CF sending data to a local printer? This is not possible unless you use ActiveX or a client side Java applet.Trust me.We tried.The closest you can get is something like doing a body onload() ev

RE: CF sending data to a local printer?

2004-05-10 Thread Philip Arnold
From: Daniel Farmer It's been requested that I create this form that when gets submitted sends the content to a printer ( in the persons place of business ). I've never done anything like that before. Was wondering if it was even possible. Because it's on the client's machine, you

Re: CF sending data to a local printer?

2004-05-10 Thread Daniel Farmer
You mean an applet that is always on, always running right? and checks for print alerts? - Original Message - From: Pete Ruckelshaus - CFList To: CF-Talk Sent: Monday, May 10, 2004 2:24 PM Subject: Re: CF sending data to a local printer? This is not possible unless you use ActiveX

Re: CF sending data to a local printer?

2004-05-10 Thread Pete Ruckelshaus - CFList
-Talk Sent: Monday, May 10, 2004 2:24 PM Subject: Re: CF sending data to a local printer? This is not possible unless you use ActiveX or a client side Java applet.Trust me.We tried.The closest you can get is something like doing a body onload() event in _javascript_ and have it call the print

Re: CF sending data to a local printer?

2004-05-10 Thread Gonzo Rock
My guess here is that you envision someone on the internet is browsing a web site and fills out a form. You want that form to print on the web site owners printer? I think that's a WILD idea... however it is only possible if the CF server has network access to the printer.Is the CF server in

Re: CF sending data to a local printer?

2004-05-10 Thread Daniel Farmer
The question is though is how does that applet see the printer ? - Original Message - From: Pete Ruckelshaus - CFList To: CF-Talk Sent: Monday, May 10, 2004 3:01 PM Subject: Re: CF sending data to a local printer? Yes, the page to be printed would contain this applet.We are using

Re: CF sending data to a local printer?

2004-05-10 Thread Daniel Farmer
Pete - could you describe this applet/process in a bit more detail? - Original Message - From: Pete Ruckelshaus - CFList To: CF-Talk Sent: Monday, May 10, 2004 3:01 PM Subject: Re: CF sending data to a local printer? Yes, the page to be printed would contain this applet.We are using

Re: CF sending data to a local printer?

2004-05-10 Thread Daniel Farmer
ist [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, May 10, 2004 11:24 AM Subject: Re: CF sending data to a local printer? This is not possible unless you use ActiveX or a client side Java applet.Trust me.We tried.The closest you can get is something like doing a body onload() ev

Re: CF sending data to a local printer?

2004-05-10 Thread Jonathan Lane
You could take the form output, write it to a text file using CFFILE.If you've got an Mac OS X box handy, have it dump the files into a folder on there, and attach an Applescript to the folder using folder actions to print all files to the printer (and then delete them). Some people are