ActiveReport Property

Applies To

Screen Object.

Description

You can use the ActiveReport property together with the Screen object to identify or refer to the report that has the focus.

Setting

This property setting contains the report object that has the focus at run time.

This property is available only in Visual Basic and is read-only in all views.

Remarks

You can use the ActiveReport property to refer to an active report together with one of its properties or methods. The following example displays the Name property setting of the active report.


Dim CurrentReport As ReportCurrentReport = Screen.ActiveReport"Current report is " & CurrentReport.Name

If no report has the focus when you use the ActiveReport property, an error occurs.

See Also

ActiveControl Property, ActiveDatasheet Property, ActiveForm Property, Me Property, Screen Object.