Section

  • Thread starter Thread starter RichardM
  • Start date Start date
R

RichardM

Just wondering if any one knows how to get around this

My Group section header takes up over two pages and the
page number in the page footer repeats itself, for eg page
1 of 10 page 1 of 10 .

Thanks in advance for your help
 
somthing like this
GroupXY is the name of the control
GroupHeader0 is the name of the Section

Private Sub GroupHeader0_Print(Cancel As Integer,
PrintCount As Integer)

If Me.GroupHeader0.WillContinue = True Then

Me![GroupXY].Visible = False

Else

Me![GroupXY].Visible = True

End If

End Sub
 
Back
Top