Change
This event occurs when you change, or a user changes, the properties of a control.
Syntax
Private Sub intrinsic_Change( )
Parameters
- intrinsic
- Object expression that evaluates to an intrinsic control.
Remarks
Each control may handle the Change event differently. The following list shows how intrinsic controls handle the Change event:
- ComboBox
- The Change event occurs only if you set the Style property to 0 (drop-down combo box) and the user changes the text or if you change the Text property setting through code.
- HScrollBar and VScrollBar (horizontal and vertical scroll bars)
- The Change event occurs when the user scrolls or when you change the Value property setting through code.
- Label
- The Change event occurs when you change the Caption property setting through code.
- TextBox
- The Change event occurs when you change the Text property setting through code.