Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.17 KB

Access.Screen.ActiveReport.md

File metadata and controls

43 lines (26 loc) · 1.17 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Screen.ActiveReport property (Access)
vbaac10.chm12491
vbaac10.chm12491
Access.Screen.ActiveReport
efcf6bfd-2749-5b5c-d7ca-a26168bfcb65
03/23/2019
medium

Screen.ActiveReport property (Access)

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.

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 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.

[!includeSupport and feedback]