Export Report Question

edited 10:07AM in FastReport 4.0
Is this possible?

I want to export a report to a PDF file but without any popup dialogs and without any report preview showing. So the user can click a button in my main application to generate it without any other windows showing.

Thanks

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 10:07AM
    yes
    load report
    set any report component props to hide dialogs.
    if any internal dialogs use findobject method to find and disable.
    set export component props hiding dialogs etc.
    call preparereport then call

    frxreport1.Export(frxPdfExport1);
  • edited 10:07AM
    Thanks gordk, I had tried the export but it was the PrepareReport I was missing >
    gordk wrote: »
    yes
    load report
    set any report component props to hide dialogs.
    if any internal dialogs use findobject method to find and disable.
    set export component props hiding dialogs etc.
    call preparereport then call

    frxreport1.Export(frxPdfExport1);

Leave a Comment