Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

how to print something in footer band only one time?

edited January 2004 in General
hi
I want to print something in footer band only one time.
How can I control the footer band appeard on every page?
Thanks

Comments

  • edited January 2004
    Hello,

    If you would like to print something in the footer band based on which page
    it is on, you can use the TppFooterBand.BeforePrint event to check which
    page the report is on and set certain components' visible property based on
    that value.

    if Report.PageNo > 1 then
    Label1.Visible := False;

    --
    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.