Some code AFTER show Dialog
I have some code in Delphi on OnBeginDoc Event.
But this code is executed at the beginning, and after that is showing Dialog
I want to show Dialog, check or uncheck checkboxes, click OK button and then return to Delphi to execute my function.
It is possible ?
What event I have to use ?
But this code is executed at the beginning, and after that is showing Dialog
I want to show Dialog, check or uncheck checkboxes, click OK button and then return to Delphi to execute my function.
It is possible ?
What event I have to use ?
Comments
the normal approach would be to set these things in your own dialog form
not the reports, then run the report.
the value of any report variable can be read from delphi in the events of the tfrxreport component.
typically obp event.
you do not return to Delphi until report is finished processing.
you can also write functions for use in the report to pass values out to Delphi.
And some have options, others are not, or have other options.
Therefore, I do not want to put many different options on the window, because they are not always needed.