If you are calling Report.PrintToDevices, then please add the following:
if myReport.InitializeParameters then myReport.PrintToDevices;
The GlobalOnCreate needs to fire prior to any other RAP events firing. To implement this, we had to move it to the Report.InitializeParameters method. This method is not called by PrintToDevices - which is correct, it cannot be called from there. Thus, you will need to add the call to your code. (We should have made a note in the release notes, but we did not realize it until after the release).
Best regards,
Nard Moseley Digital Metaphors www.digital-metaphors.com
Comments
If you are calling Report.PrintToDevices, then please add the following:
if myReport.InitializeParameters then
myReport.PrintToDevices;
The GlobalOnCreate needs to fire prior to any other RAP events firing. To
implement this, we had to move it to the Report.InitializeParameters method.
This method is not called by PrintToDevices - which is correct, it cannot be
called from there. Thus, you will need to add the call to your code. (We
should have made a note in the release notes, but we did not realize it
until after the release).
Best regards,
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hello Nard,
Thanks a lot. It works fine.
Michael
Nard Moseley (Digital Metaphors) schrieb: