Silent export
Hi all!
I need to make "silent export" report in a pdf-file. I'm write next code:
But every time I see the following dialog:
How can i hide this dialog?
Thanks!
I need to make "silent export" report in a pdf-file. I'm write next code:
using (var report = new Report()) {
    report.Load(@"..\..\report.frx");
    report.RegisterData(data);
    report.Prepare();
    report.Export(new PDFExport { ShowProgress = false }, "result.pdf");
}
But every time I see the following dialog:
How can i hide this dialog?
Thanks!
Comments
Call the following code before generating a report:
using FastReport.Utils;
Config.ReportSettings.ShowProgress = false;