Skip to content

psReportLocation - cDRReport

Methods - Properties - Events

Type

String

Default

None

Arguments

None

Description

This read-only property holds the physical path to the report directory (for example, 'C:\SampleProject\Data\'). It will be set by the OpenReport function.

Not intended to be set by the developer.

DataFlex Framework usage

  • Web
  • Windows
  • FlexTron

Sample

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

Object oRunReportButton is a Button
    Set Label to 'Run Report'

    Procedure OnClick
        String sReportLocation     

        Send RunReport of oReport

        Get psReportLocation of oReport to sReportLocation
    End_Procedure
End_Object