Change

Indicates the contents of a control have changed. How and when this event occurs varies with the control:

Syntax

Private Sub object.Change([index])

The Change event syntax has these parts:

Part Description
object An object expression that evaluates to an object.
index An integer that uniquely identifies a control.

Remarks

The Change event procedure can synchronize or coordinate data display among controls. For example, you can use a scroll bar's Change event procedure to update the scroll bar's Value property setting in a TextBox control. Or you can use a Change event procedure to display data and formulas in a work area and results in another area.

Note A Change event procedure can sometimes cause a cascading event. This occurs when the control's Change event alters the control's contents, for example, by setting a property in code that determines the control's value, such as the Text property setting for a TextBox control. To prevent a cascading event: