PageHeader2

Hi is it possible to print only one time PageHeader2 Child1?

i try avery way but only work if i select Child1 OddPages, or EvenPages

I only need to print one time and then hide.

Thank´s

Comments

  • You can use AfterData event for your band to it. Code for example:

    namespace FastReport
    {
     public class ReportScript
     {     
      bool firstTime = true;
       
      private void Child1_AfterData(object sender, EventArgs e)
      {
       if (firstTime)
        firstTime = false;
       else
        Child1.Visible = false;
      }
     }
    }
    

Leave a Comment