Screen.ActiveReport Property

Access Developer Reference

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

Syntax

expression.ActiveReport

expression   A variable that represents a Screen object.

Remarks

This property setting contains a reference to the Report object that has the focus at run time.

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.

Visual Basic for Applications
  Dim rptCurrentReport As Report
Set rptCurrentReport = Screen.ActiveReport
MsgBox "Current report is " & rptCurrentReport.Name

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

See Also