B
Bill
I need to force a page break in the Detail_OnFormat
Event when a value changes. How do I do that?
Thanks,
Bill
Event when a value changes. How do I do that?
Thanks,
Bill
Bill said:I need to force a page break in the Detail_OnFormat
Event when a value changes. How do I do that?
Thanks,
Bill
Bill said:I need to force a page break in the Detail_OnFormat
Event when a value changes. How do I do that?
Marshall Barton said:I'm not sure I understand what you are saying. With the
group header section's ForceNewPage property set to Before
Section, the first instance of the group header will not
eject a new page unless there is a visible report header. If
you want the report header on the same page as the first
group, it seems inconsistent with starting each group on its
own page.
If that is what you want, try setting the property to None
in design view and reset it in the header section's Print
event procedure:
Me.Section(5).ForceNewPage = 1
--
Marsh
MVP [MS Access]
I can group on the field and I see the ForceNewPage
property, but it's not clear what event to use to
enable the ForceNewPage property ONLY the first
time the group field changes. I.e., I don't want a page
break to be enabled the first time the group header
prints, only on subsequent encounters.
"Marshall Barton" wrote
I'm not sure I understand what you are saying. With the
group header section's ForceNewPage property set to Before
Section, the first instance of the group header will not
eject a new page unless there is a visible report header.
If you want the report header on the same page as the first
group, it seems inconsistent with starting each group on its
own page.
If that is what you want, try setting the property to None
in design view and reset it in the header section's Print
event procedure:
Me.Section(5).ForceNewPage = 1