![]() | Type | Description |
Indicates that the control's contents is changed. Occurs when a DDE link updates data, when a user changes the mask, or when you change the Mask property setting through code. The Change event procedure can synchronize or coordinate data display among controls. Here's a sample that handles the Change event:
Private Sub MaskEdit1_Change() Debug.Print "The Change event was fired. The new control's mask value is: " & MaskEdit1.MaskValue() End Sub