Rendered Reports
Posted: Thu Jul 13, 2006 11:39 am
Is there any way to append one rendered report to another?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
You can save/load rendered reports with methods SaveDocument and LoadDocument. For example:mscenna wrote:Is there any way to append one rendered report to another?
Code: Select all
StiReport report = new StiReport();
report.RegData("MyDataSet", dataSet);
report.Render(false);
//Save rendered report to file
report.SaveDocument("c:\\test.mdc");
StiReport report2 = new StiReport();
//Load rendered report from file
report2.LoadDocument("c:\\test.mdc");
report2.Show();