Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
49 lines (26 loc) · 1.19 KB

form-datasetchange-property-access.md

File metadata and controls

49 lines (26 loc) · 1.19 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Form.DataSetChange Property (Access)
vbaac10.chm13546,vbaac10.chm5111
vbaac10.chm13546,vbaac10.chm5111
access
Access.Form.DataSetChange
29f7f9a8-4dbd-9f69-7f4c-7f93add9f1b6
06/08/2017

Form.DataSetChange Property (Access)

Returns or sets a String indicating which macro, event procedure, or user-defined function runs when the DataSetChange event occurs. Read/write.

Syntax

expression. DataSetChange

expression A variable that represents a Form object.

Remarks

Valid values for this property are "macroname" where macroname is the name of macro, "[Event Procedure]" which indicates the event procedure associated with the BeforeInsert event for the specified object, or "=functionname()" where functionname is the name of a user-defined function.

Example

The following example specifies that when the DataSetChange event occurs on the first form of the current project, the associated event procedure should run.

Forms(0).DataSetChange = "[Event Procedure]" 

See also

Concepts

Form Object