Page 1 of 1

how to bring the sum of previous page ...

Posted: Sat Oct 10, 2009 1:02 am
by dandelion65
In our Project we need to bring the sum of previous page at the first row of the next page . How can I do this ?Is it possible ?

how to bring the sum of previous page ...

Posted: Mon Oct 12, 2009 2:21 am
by Edward
Hi

Please see the following event handlers and properties in the attached report:

PageHeader1.AfterPrint:
S=0;

DataBand1.BeforePrint:
S+=1;

FooterBand1.PrintOnAllPages = true;

Run Demo.exe sample application which comes with a standard installation of Stimulsoft Reports.Net, press 'Design' and open the report there.

S - it is a variable, defined in the Dictionary.

Thank you.