Skip to content

phoStatusPanel - cDRReport

Methods - Properties - Events

Type

Handle

Default

0

Arguments

None

Description

Contains the object identifier of the status panel displayed during the opening of the report (the property pbShowStatusPanel must be set to True). The object is activated by sending the Popup message, so ensure the object has its Popup_State set to true.

The library includes a StatusPanel object for DataFlex Reports. To use the default status panel, add Use DRStatusPanel.dg to your code and use oDRStatusPanel as the object identifier for this property.

When creating a custom status panel object, its class should not be based on ModalPanel, as it halts the process after the popup has been received. The status panel object should contain a focusable object.

DataFlex Framework usage

  • Windows
  • FlexTron (using windows views)

Sample

Use MyOwnStatusPanel.dg

Object oReport is a cDRReport
    Set psReportName to 'MyReport.dr'
    Set pbShowStatusPanel to True
    Set phoStatusPanel to oMyOwnStatusPanel
End_Object