How to print directly from coldfusion code

2007-07-09 Thread chr chr
Any ideas, how to print directly from coldfusion code... I created one scheduler that runs every night, it collects data from database and make all the data into pdf files, and print all those pdf files. My question is how can i directly print in coldfusion? Any ideas or suggestions

Re: How to print directly from coldfusion code

2007-07-09 Thread J.J. Merrick
in CF8 you now have cfprint... Don't know if there is anyway to do that in MX7 other then doing some sort of Java call. J.J. On 7/9/07, chr chr [EMAIL PROTECTED] wrote: Any ideas, how to print directly from coldfusion code... I created one scheduler that runs every night, it collects

RE: How to print directly from coldfusion code

2007-07-09 Thread Andy Matthews
coldfusion code Any ideas, how to print directly from coldfusion code... I created one scheduler that runs every night, it collects data from database and make all the data into pdf files, and print all those pdf files. My question is how can i directly print in coldfusion? Any ideas

Re: How to print directly from coldfusion code

2007-07-09 Thread Alan Rother
directly from coldfusion code Any ideas, how to print directly from coldfusion code... I created one scheduler that runs every night, it collects data from database and make all the data into pdf files, and print all those pdf files. My question is how can i directly print in coldfusion

Re: How to print directly from coldfusion code

2007-07-09 Thread Ian Skinner
First question, print where? On what printer are you expecting the output to appear? Of course the CF application server is only going to be able to access printers available to the server it is installed on or the domain user it is running under. The next question, What are the capabilities

Re: How to print directly from coldfusion code

2007-07-09 Thread ch g
Printer is located in the same server domain and printer has all capabilities. Thank you for your quick response. First question, print where? On what printer are you expecting the output to appear? Of course the CF application server is only going to be able to access printers available to

Re: How to print directly from coldfusion code

2007-07-09 Thread Jake Pilgrim
My personal approach would be to use the print.exe executable found on windows machines via the cfexecute tag. Print.exe syntax: PRINT [/D:device] [[drive:][path]filename[...]] So something like this should work: cfdirectory action=list directory=c:\printDir\ name=myDir / cfoutput query=myDir

Re: How to print directly from coldfusion code

2007-07-09 Thread ch g
Thank you. My personal approach would be to use the print.exe executable found on windows machines via the cfexecute tag. Print.exe syntax: PRINT [/D:device] [[drive:][path]filename[...]] So something like this should work: cfdirectory action=list directory=c:\printDir\ name=myDir /

RE: How to print directly from coldfusion code

2007-07-09 Thread Ben Forta
Use ColdFusion 8 (public beta) and cfprint type=pdf source=my.pdf printer=printer name --- Ben -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Monday, July 09, 2007 4:31 PM To: CF-Talk Subject: Re: How to print directly from coldfusion code This isn't the BEST