Not Display the summary ReportSummaryBand details when page size more than 6
mohanaraj
600001
Dear all,
I created and displayed the expected result including summary band details in the report page in ASP.NET but the problem is when i export it .pdf or word file the summary band details are not displayed when the page size is more than 6. i'm using Fastreport.net demo version 1.2.8 is there any restriction over it.
And also i load the report by condition eg : i load the report only the condition matches the given To date and End date the report generated correctly when i click the refresh button in the fastreport it display the whole records present in the table.
How can it possible ?
Please advice me to do.
Thanks in advance.
I created and displayed the expected result including summary band details in the report page in ASP.NET but the problem is when i export it .pdf or word file the summary band details are not displayed when the page size is more than 6. i'm using Fastreport.net demo version 1.2.8 is there any restriction over it.
And also i load the report by condition eg : i load the report only the condition matches the given To date and End date the report generated correctly when i click the refresh button in the fastreport it display the whole records present in the table.
How can it possible ?
Please advice me to do.
Thanks in advance.
Comments
I don't understand what do you mean here, please explain: What is 6? cm, inches, or something else?
You should set all report parameters in the WebReport.StartReport event. In this case the report will be refreshed properly.
I set all report parameters in the OnStartReport="AllcallDetails_StartReport" as
protected void AllcallDetails_StartReport(object sender, EventArgs e)
{
Report FReport = (sender as WebReport).Report;
getSettings();
RegisterData(FReport);
AllcallDetails.Report.SetParameterValue("TaxPercent", Convert.ToString(TaxPercent.ToString("#####.##")));
AllcallDetails.Report.SetParameterValue("TotalInc", Convert.ToString(totalInc.ToString("#####.##")));
AllcallDetails.Report.SetParameterValue("Currency", Currency !="" ? Currency : "$");
}
Probably you are using the trial version. It has a limitation - max. 5 exported pages.
I've tried to reproduce the bug, everything works well on my PC. Do you have a small example project for me that I can run and test?