I have 2 reports that need to be printed together.
我有2份需要一起打印的报告。
- The first report has a header and footer that will repeat (if necessary) on data overflow.
- The last page, which is a form to be sent back.
第一个报告有一个页眉和页脚,将在数据溢出时重复(如有必要)。
最后一页,这是一个要发回的表单。
I basically need a way to print the last page without the repeated header/footers from the first report, and send in parameters to be used in the form.
我基本上需要一种方法来打印最后一页,而不会从第一个报告中重复页眉/页脚,并发送要在表单中使用的参数。
Currently I have a rectangle that does a page break placed before my footer. Inside the rectangle I have my second report (subreport). I have the header and footer unchecked for print on last page.
目前我有一个矩形,在我的页脚之前放置分页符。在矩形内部,我有第二个报告(子报告)。我在页面上取消选中页眉和页脚。
I can get it down to 3 pages (upper-left, upper-right, and lower-right minus the header/footer).
我可以将它降低到3页(左上角,右上角和右下角减去页眉/页脚)。
1 个解决方案
#1
There is a property for the Header and Footers, called PrintOnLastPage
页眉和页脚有一个属性,称为PrintOnLastPage
If you set that to False, it will not print the header and footer on the very last page of the report.
如果将其设置为False,则不会在报告的最后一页上打印页眉和页脚。
#1
There is a property for the Header and Footers, called PrintOnLastPage
页眉和页脚有一个属性,称为PrintOnLastPage
If you set that to False, it will not print the header and footer on the very last page of the report.
如果将其设置为False,则不会在报告的最后一页上打印页眉和页脚。