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?