Export report
Posted: Fri Nov 04, 2016 4:18 pm
Stimulsoft.Report, Version=2016.2.0.0
Hello,
I created a dll (C#, .NET 4.0) that exposes a procedure for the export of Stimulsoft Reports.
I execute the procedure for Report_1.mrt: it works.
I execute the procedure for Report_2.mrt: PDF created contains the render of Report_1.mr.
What I forgot to do?
Hello,
I created a dll (C#, .NET 4.0) that exposes a procedure for the export of Stimulsoft Reports.
Code: Select all
StiReport myReport;
myReport = new StiReport();
myReport.Load(pathFileReport + nomeFileReport);
myReport.Compile();
myReport.Render(false);
myReport.ExportDocument((StiExportFormat)Formato, pathFileEsportazione);
myReport = null;
I execute the procedure for Report_2.mrt: PDF created contains the render of Report_1.mr.
What I forgot to do?