Re: Page break in report

2003-03-25 Thread Randell B Adkins
You can use page-break-before: always;   as a Style.

 [EMAIL PROTECTED] 03/25/03 09:05AM 
I'm creating a composite summary report from a query and need, if the
report
is later printed, to ensure a page break between individual reports or
items.  Any idea how I can accomplish this?  

Rick 



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Page break in report

2003-03-25 Thread Candace Cottrell
Put this at the top of the page in your head
 
STYLE TYPE='text/css'
P.pageEnd {page-break-before: always}
/STYLE
 
Then where you want the page break:
 
 !--- Page Break  ---  
p class=pageEnd/p
 
 
 
Candace K. Cottrell, Web Developer 
The Children's Medical Center 
One Children's Plaza 
Dayton, OH 45404 
937-641-4293 
http://www.childrensdayton.org
 
 
[EMAIL PROTECTED]

 [EMAIL PROTECTED] 3/25/2003 9:05:46 AM 
I'm creating a composite summary report from a query and need, if the
report
is later printed, to ensure a page break between individual reports or
items.  Any idea how I can accomplish this?  

Rick 



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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Page break in report

2003-03-25 Thread Kennerly, Rick H CIV
Just what I needed.  Thanks. 




-Original Message-
From: Candace Cottrell [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 25 March, 2003 09:21
To: CF-Talk
Subject: Re: Page break in report


Put this at the top of the page in your head
 
STYLE TYPE='text/css'
P.pageEnd {page-break-before: always}
/STYLE
 
Then where you want the page break:
 
 !--- Page Break  ---  
p class=pageEnd/p
 
 
 
Candace K. Cottrell, Web Developer 
The Children's Medical Center 
One Children's Plaza 
Dayton, OH 45404 
937-641-4293 
http://www.childrensdayton.org
 
 
[EMAIL PROTECTED]

 [EMAIL PROTECTED] 3/25/2003 9:05:46 AM 
I'm creating a composite summary report from a query and need, if the
report
is later printed, to ensure a page break between individual reports or
items.  Any idea how I can accomplish this?  

Rick 




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Page break in report

2003-03-25 Thread Kennerly, Rick H CIV
Just what I needed.  Thanks. 




-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 25 March, 2003 09:09
To: CF-Talk
Subject: Re: Page break in report


You can use page-break-before: always;   as a Style.

 [EMAIL PROTECTED] 03/25/03 09:05AM 
I'm creating a composite summary report from a query and need, if the
report
is later printed, to ensure a page break between individual reports or
items.  Any idea how I can accomplish this?  

Rick 




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Page break in report

2003-03-25 Thread Jochem van Dieten
Candace Cottrell wrote:
 Put this at the top of the page in your head
  
 STYLE TYPE='text/css'
 P.pageEnd {page-break-before: always}
 /STYLE

May I recommend:
style type=text/css media=print
p.pageEnd {page-break-before: always}
/style

The default media-type for CSS is screen, so without specification it 
should not work for printed media. Also, in xhtml elements and 
attributes are case sensitive and should be lowercase (in this example 
the class pageEnd is still case-sensitive, you might want to lowercase 
that as well).

http://www.w3.org/TR/html401/present/styles.html#h-14.2.4
http://www.w3.org/TR/xhtml1/#h-4.2

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Page break in report

2003-03-25 Thread Kennerly, Rick H CIV
Just what I needed.  Thanks. 





-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 25 March, 2003 10:18
To: CF-Talk
Subject: Re: Page break in report


Candace Cottrell wrote:
 Put this at the top of the page in your head
  
 STYLE TYPE='text/css'
 P.pageEnd {page-break-before: always}
 /STYLE

May I recommend:
style type=text/css media=print
p.pageEnd {page-break-before: always}
/style

The default media-type for CSS is screen, so without specification it 
should not work for printed media. Also, in xhtml elements and 
attributes are case sensitive and should be lowercase (in this example 
the class pageEnd is still case-sensitive, you might want to lowercase 
that as well).

http://www.w3.org/TR/html401/present/styles.html#h-14.2.4
http://www.w3.org/TR/xhtml1/#h-4.2

Jochem


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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Page break in report

2003-03-25 Thread Candace Cottrell
Jochem, I am always open to recommendations. Thanks a bunch. :)
 
 
Candace K. Cottrell, Web Developer 
The Children's Medical Center 
One Children's Plaza 
Dayton, OH 45404 
937-641-4293 
http://www.childrensdayton.org
 
 
[EMAIL PROTECTED]

 [EMAIL PROTECTED] 3/25/2003 9:17:33 AM 
Candace Cottrell wrote:
 Put this at the top of the page in your head
  
 STYLE TYPE='text/css'
 P.pageEnd {page-break-before: always}
 /STYLE

May I recommend:
style type=text/css media=print
p.pageEnd {page-break-before: always}
/style

The default media-type for CSS is screen, so without specification it

should not work for printed media. Also, in xhtml elements and 
attributes are case sensitive and should be lowercase (in this example

the class pageEnd is still case-sensitive, you might want to
lowercase 
that as well).

http://www.w3.org/TR/html401/present/styles.html#h-14.2.4 
http://www.w3.org/TR/xhtml1/#h-4.2 

Jochem


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4