G
Guest
Is there a way to print the page footer only on the 1st page of a multi page
report?
report?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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

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.