Page 1 of 1

Problem with page footer

Posted: Sun Nov 23, 2008 3:16 am
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

Problem with page footer

Posted: Wed Nov 26, 2008 5:35 am
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.