Skip to content

pbReportNoCancel - cDRReport

Methods - Properties - Events

Type

Boolean

Default

True

Arguments

None

Description

Determines whether the report engine sends messages to the Windows API to allow a report cancel button to be clicked.

The default value is true, which means: No message queue pumping.

DataFlex Framework usage

  • Web
  • Windows
  • FlexTron

Sample

Object oReport is a cDRReport
    Set psReportName to 'MyReport.dr' 
End_Object

Object oRunReportWithCancelOptionButton is a Button
    Set Label to 'Run Report with Cancel option'

    Procedure OnClick
        String sReportId

        Set pbReportNoCancel of oReport to false
        Send RunReport of oReport
    End_Procedure
End_Object

Notes

  • Prior to version 8.2, the behavior was as if this property was set to false.