event Change ()
Occurs when the control's caption is changed.

 TypeDescription 
The Change event notifies your application when the control's caption is changed. Use the Caption property to access the control's caption. Use the Execute method to execute a command. The KeyDown event occurs when the user presses a key while an object has the focus.

The following sample displays the control's caption as soon as user types characters in the control:

Private Sub CalcCombo1_Change()
    With CalcCombo1
        Debug.Print .Caption
    End With
End Sub
 


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