Problem with page footer

Stimulsoft Reports.NET discussion
Post Reply
zara
Posts: 3
Joined: Mon Oct 27, 2008 5:21 am
Location: Iran

Problem with page footer

Post by zara »

1.I have a master detail report and it has a footer band that contains a sum of some data, i want to print the footerband at the bottom of the each page of report instead of doing it so after all child data(because of my dataset structure i can not use any other band instead of footerband), i set the "print at bottom" and "print in all pages" to "true" but the band is repeated after all child data how can i prevent it?
2. I used a pagefooterband in my report and i make another pagefooter in code, how can i set pagefooter in code to be displayed at the bottom of pagefooter added in designer?

thanks alot
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Problem with page footer

Post by Edward »

Hi, Zara.
zara wrote:1.I have a master detail report and it has a footer band that contains a sum of some data, i want to print the footerband at the bottom of the each page of report instead of doing it so after all child data(because of my dataset structure i can not use any other band instead of footerband), i set the "print at bottom" and "print in all pages" to "true" but the band is repeated after all child data how can i prevent it?
Please use PageFooter instead of the FooterBand and set PrintOn property in 'ExceptOfLastPage' value.
2. I used a pagefooterband in my report and i make another pagefooter in code, how can i set pagefooter in code to be displayed at the bottom of pagefooter added in designer?
Please place three PageFooters and enable or disable them as it is necesary in the BeforePrintEvent of the Page.

Also please set LargeHeight property of the page in true. This allows you to as much bands on page as you need to.

Thank you.
Post Reply