Chris__T
Posts: 339
|
| Posted: 06/09/2006, 7:50 AM |
|
Is there any way to add extra (blank) rows to the end of a report?
|
 |
 |
peterr
Posts: 5971
|
| Posted: 06/09/2006, 10:45 AM |
|
You should be able to add couple <br> tags to report footer.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
DonB
|
| Posted: 06/09/2006, 1:38 PM |
|
If you are asking because you want a page break to fall in the correct place
when printed, check out the CSS attribute 'page-break-before: always | never
| auto' which let's you specify the break. You can assign this CSS
attribute to a tag like <H1> or <TABLE>, etc - wherever it makes sense for
your application of it. Sometimes it is only necessary to add
<DIV style="page-break-before:always"></DIV>
at the top or bottom of an html block to give it the page break you need.
This only affects printing, not on-screen appearance.
--
DonB
http://www.gotodon.com/ccbth
"Chris__T" <Chris__T@forum.codecharge> wrote in message
news:644898aac4d128@news.codecharge.com...
> Is there any way to add extra (blank) rows to the end of a report?
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Chris_T
|
| Posted: 06/12/2006, 9:28 AM |
|
I was just wanting to add rows that were empty to the end of a report. Like 4 -5 rows right after the last record. So when the report is printed out, and the user needed to add more records, they had places to pencil them in.
|
|
|
 |
|