RE: page breaks

2007-12-11 Thread Orlini, Robert
thanks

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 11, 2007 2:45 PM
To: CF-Talk
Subject: RE: page breaks




Its not CF's job to control output, you can use CSS and html to do that
;)

Chris

-Original Message-
From: Orlini, Robert [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 11, 2007 2:43 PM
To: CF-Talk
Subject: SOT: page breaks

Anyway to tell CF about page breaks after each record when printing?

Thanks.

RO
HWW






~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294553
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: page breaks

2007-12-11 Thread Peterson, Chris


Its not CF's job to control output, you can use CSS and html to do that
;)

Chris

-Original Message-
From: Orlini, Robert [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 11, 2007 2:43 PM
To: CF-Talk
Subject: SOT: page breaks

Anyway to tell CF about page breaks after each record when printing?

Thanks.

RO
HWW




~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294549
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: page breaks for printing

2006-08-23 Thread Sandra Clark
Set up a stylesheet for printing (media="print"), then you can take
advantage of the printing mechanisms in CSS.

Orphans, page, page-break=after, page-break-before, size and widows would be
the main one.  You can also set up the print style sheet using inches (since
the page size is known).  Set your body in the print stylesheet to 
Body{width:8.5in, height:11in, padding: .5in} to emulate an actual page. 

If you are using tables to display your data, use the 
groupings, since headers and footer in  and  will print on
each page (only useful in print, for this).


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1


Read an interview regarding my CSS Hands on Class at 
http://www.shayna.com/index.cfm?fuseaction=blog.display_entry&id=140

 
-Original Message-
From: Tim Laureska [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 23, 2006 8:24 AM
To: CF-Talk
Subject: page breaks for printing

I have a page that returns a couple hundred records that I want to print .
some of the records' info crosses over onto the next page. how can I create
clean page breaks for printing so that no one record spans two pages

 

Thanks in advance

 

Tim






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250722
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: page breaks for printing

2006-08-23 Thread Doug Brown
You could try doing it in the css of the page.

IE:


  H1 { page-break-before: always }
 
...
 


Hope this helps.



- Original Message - 
From: "Tim Laureska" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, August 23, 2006 6:23 AM
Subject: page breaks for printing


> I have a page that returns a couple hundred records that I want to print .
> some of the records' info crosses over onto the next page. how can I
create
> clean page breaks for printing so that no one record spans two pages
>
>
>
> Thanks in advance
>
>
>
> Tim
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250711
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Page breaks in PDF using CFDOCUMENT

2005-07-22 Thread Dave.Phillips


-Original Message-
From: Rey Bango [mailto:[EMAIL PROTECTED]
Sent: Friday, July 22, 2005 11:02 AM
To: CF-Talk
Subject: Page breaks in PDF using CFDOCUMENT


Hey guys, how do I force a page break in cfdocument?

I've tried using:

 and


but that didn't work.

Any ideas?

Rey...

-- 
http://www.ReyBango.com




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212547
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Page Breaks

2005-04-11 Thread Greg Johnson
I belief that you can indeed do this.  We were able to get it working 
with the css for now but will be working on an application before long 
that will require far more formal looking reports so we will most likly 
get into it in far more detail.  My Crystal Reports experiance should 
come in well.  Will let everyone know as soon as I have gotten well into it.

Greg

Kevin Graeme wrote:

>Keep us posted. I shelved a project because of these kinds of limitations.
>
>---
>Kevin Graeme
>Cooperative Extension Technology Services
>University of Wisconsin-Extension 
>
>  
>
>>-Original Message-
>>From: Greg Johnson [mailto:[EMAIL PROTECTED] 
>>Sent: Wednesday, April 06, 2005 10:18 AM
>>To: CF-Talk
>>Subject: Re: Page Breaks
>>
>>Just downloaded the report builder, going to check it out now.
>>
>>Connie DeCinko wrote:
>>
>>
>>
>>>You should be able to do this in the CFMX7 Report Builder.  
>>>  
>>>
>>I recall an 
>>
>>
>>>option that is similar to the Access report writer, it lets 
>>>  
>>>
>>you chose 
>>
>>
>>>to keep certain groups together.
>>>
>>>
>>>-Original Message-
>>>From: Greg Johnson [mailto:[EMAIL PROTECTED]
>>>Sent: Wednesday, April 06, 2005 7:07 AM
>>>To: CF-Talk
>>>Subject: Page Breaks
>>>
>>>I am generating a PDF file that has multiple sections.  What 
>>>  
>>>
>>I want is 
>>
>>
>>>that if multiple sections can compltely fit on one page of 
>>>  
>>>
>>the PDF that 
>>
>>
>>>it will let them, but if part of a section is going to wrap 
>>>  
>>>
>>to the next 
>>
>>
>>>page, then the section is forced to the next page.  Since 
>>>  
>>>
>>the content 
>>
>>
>>>vastly changes the length of each section, I need it to do this 
>>>automaticaly since I can never be sure from one report to 
>>>  
>>>
>>another where they will be needed.
>>
>>
>>>Thanks
>>>Greg
>>>
>>>
>>>
>>>
>>>  
>>>
>>
>>
>
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202176
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Page Breaks

2005-04-11 Thread Kevin Graeme
Keep us posted. I shelved a project because of these kinds of limitations.

---
Kevin Graeme
Cooperative Extension Technology Services
University of Wisconsin-Extension 

> -Original Message-
> From: Greg Johnson [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, April 06, 2005 10:18 AM
> To: CF-Talk
> Subject: Re: Page Breaks
> 
> Just downloaded the report builder, going to check it out now.
> 
> Connie DeCinko wrote:
> 
> >You should be able to do this in the CFMX7 Report Builder.  
> I recall an 
> >option that is similar to the Access report writer, it lets 
> you chose 
> >to keep certain groups together.
> > 
> >
> >-Original Message-
> >From: Greg Johnson [mailto:[EMAIL PROTECTED]
> >Sent: Wednesday, April 06, 2005 7:07 AM
> >To: CF-Talk
> >Subject: Page Breaks
> >
> >I am generating a PDF file that has multiple sections.  What 
> I want is 
> >that if multiple sections can compltely fit on one page of 
> the PDF that 
> >it will let them, but if part of a section is going to wrap 
> to the next 
> >page, then the section is forced to the next page.  Since 
> the content 
> >vastly changes the length of each section, I need it to do this 
> >automaticaly since I can never be sure from one report to 
> another where they will be needed.
> >
> >Thanks
> >Greg
> >
> >
> >
> >
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202167
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Page Breaks

2005-04-06 Thread S . Isaac Dealey
> Found what you were saying and tried it, but the CF7 PDF
> Generator apparently doesn't recognize that CSS attrib.

> Thanks though.

Sorry I couldn't be more helpful.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201742
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Page Breaks

2005-04-06 Thread Greg Johnson
Just downloaded the report builder, going to check it out now.

Connie DeCinko wrote:

>You should be able to do this in the CFMX7 Report Builder.  I recall an
>option that is similar to the Access report writer, it lets you chose to
>keep certain groups together.
> 
>
>-Original Message-
>From: Greg Johnson [mailto:[EMAIL PROTECTED] 
>Sent: Wednesday, April 06, 2005 7:07 AM
>To: CF-Talk
>Subject: Page Breaks
>
>I am generating a PDF file that has multiple sections.  What I want is that
>if multiple sections can compltely fit on one page of the PDF that it will
>let them, but if part of a section is going to wrap to the next page, then
>the section is forced to the next page.  Since the content vastly changes
>the length of each section, I need it to do this automaticaly since I can
>never be sure from one report to another where they will be needed.
>
>Thanks
>Greg
>
>
>
>

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201740
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Page Breaks

2005-04-06 Thread Greg Johnson
Found what you were saying and tried it, but the CF7 PDF Generator 
apparently doesn't recognize that CSS attrib.

Thanks though.

S. Isaac Dealey wrote:

>>I am generating a PDF file that has multiple sections.
>>What I want is that if multiple sections can compltely fit
>>on one page of the PDF that it will let them, but if part
>>of a section is going to wrap to the next page, then the
>>section is forced to the next page.  Since the content
>>vastly changes the length of each section, I need it to do
>>this automaticaly since I can never be sure from one
>>report to another where they will be needed.
>>
>>
>
>  
>
>>Thanks
>>Greg
>>
>>
>
>I think CSS has some control for orphans/widows... Not sure if the PDF
>engine will recognize and properly interpret that... but it's worth a
>shot.
>
>
>
>s. isaac dealey   954.522.6080
>new epoch : isn't it time for a change?
>
>add features without fixtures with
>the onTap open source framework
>
>http://macromedia.breezecentral.com/p49777853/
>http://www.sys-con.com/author/?id=4806
>http://www.fusiontap.com
>
>
>
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201739
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Page Breaks

2005-04-06 Thread Connie DeCinko
You should be able to do this in the CFMX7 Report Builder.  I recall an
option that is similar to the Access report writer, it lets you chose to
keep certain groups together.
 

-Original Message-
From: Greg Johnson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 06, 2005 7:07 AM
To: CF-Talk
Subject: Page Breaks

I am generating a PDF file that has multiple sections.  What I want is that
if multiple sections can compltely fit on one page of the PDF that it will
let them, but if part of a section is going to wrap to the next page, then
the section is forced to the next page.  Since the content vastly changes
the length of each section, I need it to do this automaticaly since I can
never be sure from one report to another where they will be needed.

Thanks
Greg



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201733
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Page Breaks

2005-04-06 Thread S . Isaac Dealey
> I am generating a PDF file that has multiple sections.
> What I want is that if multiple sections can compltely fit
> on one page of the PDF that it will let them, but if part
> of a section is going to wrap to the next page, then the
> section is forced to the next page.  Since the content
> vastly changes the length of each section, I need it to do
> this automaticaly since I can never be sure from one
> report to another where they will be needed.

> Thanks
> Greg

I think CSS has some control for orphans/widows... Not sure if the PDF
engine will recognize and properly interpret that... but it's worth a
shot.



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201713
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Page Breaks for Printing

2002-12-23 Thread Jochem van Dieten
Quoting James Smith <[EMAIL PROTECTED]>:
> 
> If the document is say 2 pages long and the first page (before the CSS
> page break) is short, say 50% page height, it prints alligned to the
> BOTTOM of the page, page 2 then prints top alligned.  Anyone know how
> to fix this?

Show the stylesheet. And if you still have layout left in your HTML, we
need that too.

Jochem

-- 
Friends don't let friends use table-based layouts.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Page Breaks for Printing

2002-12-23 Thread James Smith
I have been using this for some time and have a question I have been meaning
to ask from day 1 but never got round to it ;-)

If the document is say 2 pages long and the first page (before the CSS page
break) is short, say 50% page height, it prints alligned to the BOTTOM of
the page, page 2 then prints top alligned.  Anyone know how to fix this?

--
James Smith
[EMAIL PROTECTED]

- Original Message -
From: "Jason Lees (National Express)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 19, 2002 2:11 PM
Subject: RE: Page Breaks for Printing


> We use page breaks, and its a simple tag extention of the classic
paragraph
> Tag
>
> 
>
> The Complication is deciding on the location to place the Tag.
>
> Jason Lees
> Development Team Leader
> National Express Coaches Ltd.
>
>
>
> -Original Message-
> From: Chad [mailto:[EMAIL PROTECTED]]
> Sent: 19 December 2002 14:03
> To: CF-Talk
> Subject: Page Breaks for Printing
>
>
> Has anyone figured out how to make page breaks for printing?
>
> I.E. have the user click one button to print all of the new orders.
> Each order on a separate piece of 8.5x11 paper.
>
> Javascript?  Generate a PDF?
>
> Thanks!
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Page Breaks for Printing

2002-12-19 Thread Jochem van Dieten
Quoting Chad <[EMAIL PROTECTED]>:
> 
> Has anyone figured out how to make page breaks for printing?

http://www.w3.org/TR/REC-CSS2/page.html

Jochem
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Page Breaks for Printing

2002-12-19 Thread Jeffry Houser
  This might be 
useful. 

  Generating PDFs is also a valid option.

  I've heard that giving the HTML file with a .doc extension instead of 
html will open it in word, which will render the HTML as a document with 
page breaks, but I have never tried this on my own.

At 09:03 AM 12/19/2002 -0500, you wrote:
>Has anyone figured out how to make page breaks for printing?
>
>I.E. have the user click one button to print all of the new orders.
>Each order on a separate piece of 8.5x11 paper.
>
>Javascript?  Generate a PDF?
>
>Thanks!
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Page Breaks for Printing

2002-12-19 Thread Chad
Oh cool.. thanks... I have control of what browser the user has so this
should work!



> -Original Message-
> From: Timothy Heald [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 19, 2002 9:08 AM
> To: CF-Talk
> Subject: RE: Page Breaks for Printing
> 
> CSS.  Think it may be IE only.  Look at these properties:
> 
> page-break-after
> page-break-before
> page-break-inside
> 
> You can then set up divs or  blocks that will throw a page break
right
> where you want it.  We did this with some success for printing out
course
> certificates and stuff before.
> Tim
> 
> -Original Message-
> From: Chad [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 19, 2002 9:03 AM
> To: CF-Talk
> Subject: Page Breaks for Printing
> 
> 
> Has anyone figured out how to make page breaks for printing?
> 
> I.E. have the user click one button to print all of the new orders.
> Each order on a separate piece of 8.5x11 paper.
> 
> Javascript?  Generate a PDF?
> 
> Thanks!
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Page Breaks for Printing

2002-12-19 Thread Pete Ruckelshaus
CSS holds the answer.


BR.pageEnd{page-break-after: always;}

.
.
.
This line should be above the break

This line should be after the page break.

This only works in CSS2 compliant browsers.

Hope this helps,

Pete

- Original Message -
From: "Chad" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, December 19, 2002 9:03 AM
Subject: Page Breaks for Printing


> Has anyone figured out how to make page breaks for printing?
>
> I.E. have the user click one button to print all of the new orders.
> Each order on a separate piece of 8.5x11 paper.
>
> Javascript?  Generate a PDF?
>
> Thanks!
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Page Breaks for Printing

2002-12-19 Thread Jason Lees (National Express)
We use page breaks, and its a simple tag extention of the classic paragraph
Tag



The Complication is deciding on the location to place the Tag.

Jason Lees
Development Team Leader
National Express Coaches Ltd.



-Original Message-
From: Chad [mailto:[EMAIL PROTECTED]]
Sent: 19 December 2002 14:03
To: CF-Talk
Subject: Page Breaks for Printing


Has anyone figured out how to make page breaks for printing?

I.E. have the user click one button to print all of the new orders.
Each order on a separate piece of 8.5x11 paper.

Javascript?  Generate a PDF?

Thanks!


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Page Breaks for Printing

2002-12-19 Thread Timothy Heald
CSS.  Think it may be IE only.  Look at these properties:

page-break-after
page-break-before
page-break-inside

You can then set up divs or  blocks that will throw a page break right where you 
want it.  We did this with some success for printing out course certificates and stuff 
before.
Tim

-Original Message-
From: Chad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 19, 2002 9:03 AM
To: CF-Talk
Subject: Page Breaks for Printing


Has anyone figured out how to make page breaks for printing?

I.E. have the user click one button to print all of the new orders.
Each order on a separate piece of 8.5x11 paper.

Javascript?  Generate a PDF?

Thanks!


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Page Breaks - report formats?????

2001-10-18 Thread Priscilla Yamin

One of our programmers did it with style sheets

>>> [EMAIL PROTECTED] 10/16/01 10:01AM >>>
Hello,

I have a report that has 10 columns and after printed
is about 15 pages long.  I would like the columns to
be printed on every page but not sure how to do
thisI know this should be pretty easy

My question is, how can I have CF know that a new page
is being started and therefore cfoutput the column
headings again?  Or would this be done using CSS?  We
are not using any report writers such as Crystal...

TIA





~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: page breaks

2000-11-23 Thread Jason Lees (National Express)


You could use 




Jason Lees 
National Express
Email : [EMAIL PROTECTED]


-Original Message-
From: Nick Call [mailto:[EMAIL PROTECTED]]
Sent: 22 November 2000 23:22
To: CF-Talk
Subject: page breaks


Help

I know we went over this a while back, but humor me again, please.

I need to embed a page break in some HTML code to force the printer to "page
break".

Thanks in advance.
Don't eat too much turkey!

Nick


~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
###
This document is intended for, and should only be read by, those persons to
whom it is addressed. Its contents are confidential and if you have received
this message in error, please notify us immediately by telephone on 0121 609 6301
and delete all records of the message from your computer. Any form of reproduction,
dissemination, copying, disclosure, modification, distribution and / or
publication of this message without our prior written consent is strictly
prohibited. Neither the author of this message nor their employers accept
legal responsibility for the contents of the message. Any views or opinions
presented are solely those of the author.
If you have any queries please contact [EMAIL PROTECTED]

##

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: page breaks

2000-11-22 Thread BORKMAN Lee

Nick,
As far as I know, you can do this with StyleSheets for IE, but not for
Netscape.

Define a style like this:

P.page {page-break-after:always}

Then use  to force the break.

Anyone have any better way?

Lee (Bjork) Borkman
http://bjork.net ColdFusion Tags by Bjork



-Original Message-
From: Nick Call [mailto:[EMAIL PROTECTED]]
Help
I know we went over this a while back, but humor me again, please.
I need to embed a page break in some HTML code to force the printer to "page
break".


IMPORTANT NOTICE:
This e-mail and any attachment to it is intended only to be read or used by
the named addressee.  It is confidential and may contain legally privileged
information.  No confidentiality or privilege is waived or lost by any
mistaken transmission to you.  If you receive this e-mail in error, please
immediately delete it from your system and notify the sender.  You must not
disclose, copy or use any part of this e-mail if you are not the intended
recipient.  The RTA is not responsible for any unauthorised alterations to
this e-mail or attachment to it.  
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Page Breaks

2000-08-12 Thread Philip Arnold - ASP

> Is it possible to do a page break or a Page eject  between forms.
>
> We are currently using:
>
> 
>
> This seems to work in netscapre but not IE.

IE has a very odd usage on CSS, some of it works properly, others don't work
at all...

Maybe you could use a  before the 
and see if that works... I've not tested it though

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.