How to detect that a previewed report has been printed ?

Hello,

I need to detect if a previewed report has been printed or not ?

  FFrxReport.PreviewOptions.Buttons := FFrxReport.PreviewOptions.Buttons -
    [pbPrint];
  if FFrxReport.PrepareReport then
    if FFrxReport.ShowPreparedReport then
  begin
     If ReportWasPrinted then....
  end;

If there is no way, is it possible to override frxReport Print button ?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 6:22AM
    Try using the tfrxreportcomponents onreportprint event.
  • edited 6:22AM
    gordk wrote: »
    Try using the tfrxreportcomponents onreportprint event.

    Thank you.
    I'm using AfterReportPrint event >
  • edited 6:22AM
    See my problem entitled 'Scripting error' and the help I had in solving it.
    I can get the number printed through Delphi in 'procedure frxReportAfterPrintReport(Sender)' by reading 'frxReport.PrintOptions.Copies'
    or from my report variable <NumPrinted>, which is cumulative.

Leave a Comment