Why I do not see window with parameters in Pdf Export
I have program
frxReport.ShowProgress := false;
frxReport.EngineOptions.SilentMode := true;
frxReport.PrintOptions.ShowDialog := false;
try
frxReport.PrepareReport;
except
Message_box_err('error');
end;
fbvar.frxPDFExport.Stream := sr;
fbvar.frxPDFExport.FileName := kat + '.pdf';
fbvar.frxPDFExport.ShowDialog := true;
frxReport.Export(fbvar.frxPDFExport);
I have pdf file in Directory as I point but before Export I want to see windows with pdf parameters to set. What I can do or set to see this window ?
Regards
Miroslaw Rogula
Comments
Create small demo project with error and send it to support@fast-report.com
Now I know why. Because line
fbvar.frxPDFExport.Stream := sr;
Why do you do not show this window even if
frxPDFExport.ShowDialog := true;
when you assign stream to
.frxPDFExport.Stream := sr;
I see it in source code.
Regards
Mirosław Rogula