Page Footer

C

chad

hi,

here's my scenario of my problem

i had one report (Report A) and it has a page footer once i viewed it the
page footer appears, but when i sub report the Report A on a another report
(Report B) the page footer of Report A does show and it supposed to be shown
at the page footer of Report B.

its there anyway to show the page footer of Report A to Report B?

i really badly need your help.

thanks and regards,
chad
 
M

Marshall Barton

chad said:
i had one report (Report A) and it has a page footer once i viewed it the
page footer appears, but when i sub report the Report A on a another report
(Report B) the page footer of Report A does show and it supposed to be shown
at the page footer of Report B.

its there anyway to show the page footer of Report A to Report B?


No, there can only be one page footer and the main report is
the only logical one to use.

You can manipulate the main report page footer from the
subreport by using code in a subreport event procedure. For
example, if you put a text box named txtSubTitle in the main
report page footer section, then the subreport's report
header section's Format event procedure can do something
like:
Parent.txtSubTitle = "my subreport something"
 
C

chad

Marshall Barton said:
No, there can only be one page footer and the main report is
the only logical one to use.

You can manipulate the main report page footer from the
subreport by using code in a subreport event procedure. For
example, if you put a text box named txtSubTitle in the main
report page footer section, then the subreport's report
header section's Format event procedure can do something
like:
Parent.txtSubTitle = "my subreport something"

ok thanks for help.
 

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