Prints different as a subreport

H

HighA

I have a two page report. It is separated by a page break. It prints out as
a two page summary.
However, when I include this report in another (as a subreport) it prints
over 3 pages. Seems to force a page break about on the half way of the 1st
page, then a full page, then another half page.
Any ideas as how to get it to prints a it was intended to...ie a two page
summary.

Regards
John
 
M

Marshall Barton

HighA said:
I have a two page report. It is separated by a page break. It prints out as
a two page summary.
However, when I include this report in another (as a subreport) it prints
over 3 pages. Seems to force a page break about on the half way of the 1st
page, then a full page, then another half page.
Any ideas as how to get it to prints a it was intended to...ie a two page
summary.


Page breaks in subreports are ignored (as are the Page
header/footer sections) because the main report is in charge
of paging.

If the subreport is in the main report's footer, you can get
the main report to start a new page by setting the footer's
ForceNewPage property or by using a page break control.

If you want the subreport to start a new page somewhere
inside itself, then you'll have to use one of its section's
KeepTogether and/or ForceNewPage properties.
 
Top