Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 802 Bytes

Access.Form.Query(even).md

File metadata and controls

39 lines (24 loc) · 802 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Form.Query event (Access)
vbaac10.chm13670
vbaac10.chm13670
Access.Form.Query
f3070a6f-3064-b496-ff9f-4da165205f90
03/08/2019
medium

Form.Query event (Access)

Occurs whenever the specified PivotTable view query becomes necessary. The query may not occur immediately; it may be delayed until the new data is displayed.

Syntax

expression.Query

expression A variable that represents a Form object.

Example

The following example demonstrates the syntax for a subroutine that traps the Query event.

Private Sub Form_Query() 
 MsgBox "A query has become necessary." 
End Sub

[!includeSupport and feedback]