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