event Change ()
Fired while the user changes the control's text.

 TypeDescription 

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

 


Send comments on this topic.
© 1999-2007 Exontrol Inc, Software. All rights reserved.