Report Property ProcessingOnly

I would like to hear whether directly setting up the PROCESSINGONLY Of The REPORT property is possible from code. Thanks to everybody.

No, it’s not possible. If you like to change this property you must do some workarround. You could create a boolean global - lets name it HideReportOutput Afterwards You have to create the report and on every Sections “OnPreSection()” place the code CURRREPORT.SHOWOUTPUT := not HideReportOutput Create a function called InitHideReportOutput(HideOutput as boolean) with the following code HideReportOutput := HideOutput; --------------------------------------------- Call the report from your code by creating a variable Report as Report then call Report.HideReportOutput(true) Report.Runmodal Now the report will execute - but not print anything… … hope this answers your question