Re: Printer Question

2008-07-31 Thread Dakota Burns
Thank you Dave, Ian, and Claude! The CSS method should work fine (tested works). Will keep the CFDocument method in mind for future reference as outputting to PDF is quite powerful. Best regards, - Dakota On Tue, Jul 29, 2008 at 10:17 AM, Claude Schneegans [EMAIL PROTECTED] wrote: Just put

Printer Question

2008-07-29 Thread Dakota Burns
Hi - I have an intranet form that allows users to print multiple listings by selecting a checkbox for each one. After the form is submitted, a long page is returned with each listing separated by a horizontal bar, (the code I'm using uses cfoutput to loop through the queried listings). When the

RE: Printer Question

2008-07-29 Thread Dave Phillips
You can enter a page break with CSS that might work. Try googling +css +page break Dave -Original Message- From: Dakota Burns [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 29, 2008 9:49 AM To: CF-Talk Subject: Printer Question Hi - I have an intranet form that allows users to print

Re: Printer Question

2008-07-29 Thread Ian Skinner
Dakota Burns wrote: Is their a way through coding or a third-party tool, to print these listings in portrait format so new listings start on a new page? (This thought may be to simplistic, but what I'm essentially looking to do is insert a page-break at the end of each loop.) Thanks for

Re: Printer Question

2008-07-29 Thread Claude Schneegans
Just put this style in the first P or BR for your new page: STYLE=page-break-before: always; -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.