A
aarondorsey
I have seen similar questions on this, but none of the solutions work
for me.
I have two reports: ReportMain and ReportSub
When opening ReportSub, I get 49 records, 5 per page, using a page
break in the detail section under the field (works fine)
When opening ReportMain which has ReportSub as a subreport in the
detail section, the page break no longer works
It does not work even when both breaks visible at all times, so is
there another way?
I have tried using a page break below the subreport in ReportMain
I am using the onformat event to make the pagebreaks visible via global
vars:
pseudo...
sub detail_format
If reportmain.thecounter Mod 5 = 0 Then
reportmain.pagebreak.visible = true
reportsub.pagebreak.visible = true
else
reportmain.pagebreak.visible = false
reportsub.pagebreak.visible = false
end if
end sub
Any thoughts are greatly appreciated.
Regards, Aaron
for me.
I have two reports: ReportMain and ReportSub
When opening ReportSub, I get 49 records, 5 per page, using a page
break in the detail section under the field (works fine)
When opening ReportMain which has ReportSub as a subreport in the
detail section, the page break no longer works
It does not work even when both breaks visible at all times, so is
there another way?
I have tried using a page break below the subreport in ReportMain
I am using the onformat event to make the pagebreaks visible via global
vars:
pseudo...
sub detail_format
If reportmain.thecounter Mod 5 = 0 Then
reportmain.pagebreak.visible = true
reportsub.pagebreak.visible = true
else
reportmain.pagebreak.visible = false
reportsub.pagebreak.visible = false
end if
end sub
Any thoughts are greatly appreciated.
Regards, Aaron