G
Guest
Is there a way to print the page footer only on the 1st page of a multi page
report?
report?
Is there a way to print the page footer only on the 1st page of a multi page
report?
fredg said:Is there a way to print the page footer only on the 1st page of a multi page
report?
Code the Page footer Format event:
Cancel = [Page]>1
tina said:okay. try the following procedure in the PageFooterSection's OnFormat
property, as
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
Cancel = Me.Detail.HasContinued
End Sub
hth