Suppress page header

  • Thread starter Thread starter Peter Ivers
  • Start date Start date
P

Peter Ivers

Is there a way to suppress print of the page header when
a group header is printed. The report looks like this

ITEM QTY PRICE << want to hide this
GROUP HEADER HERE WITH PAGE BREAK
ITEM QTY PRICE << This is actually on group header
1 10 10.99
 
Peter said:
Is there a way to suppress print of the page header when
a group header is printed. The report looks like this

ITEM QTY PRICE << want to hide this
GROUP HEADER HERE WITH PAGE BREAK
ITEM QTY PRICE << This is actually on group header
1 10 10.99


Set the Page header's Visible property to No (for the first
page). Then use the Group footer's Format event to make it
visible (for the start of the next group):

Me.Section(3).Visible = True

and the Group header's Format event to make it invisible
(for the rest of the group):

Me.Section(3).Visible = False
 
Back
Top