GroupFooter fixed on bottom of site

Hello,
Sorry i??m a beginner with Fast Reports, and i need the GroupFooter fixed on the bottom of my side.
Where can i change?
Best Regards

Comments

  • PolomintPolomint Australia
    edited 1:24AM
    Not sure what you mean by "side", but have tried PageFooter or ReportFooter instead?

    Cheers, Paul
  • gpigpi
    edited 1:24AM
    Change Engine.CurY in the TfrxGroupFooter.OnAfterCalcHeight event
    if Engine.FreeSpace < GroupFooter1.Height then Engine.NewPage;
    Engine.CurY := Engine.CurY + Engine.FreeSpace -GroupFooter1.Height - 0.000001;
    
  • JoeJoe
    edited 1:24AM
    gpi wrote: »
    Change Engine.CurY in the TfrxGroupFooter.OnAfterCalcHeight event
    if Engine.FreeSpace < GroupFooter1.Height then Engine.NewPage;
    Engine.CurY := Engine.CurY + Engine.FreeSpace -GroupFooter1.Height - 0.000001;
    
    Thanks Perfect!

Leave a Comment