Section

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
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top