If I'm not wrong, combo box click event must only triggered when the user
clicks on the combo box. But something unsual is happening with my code.

combo box click:
Private Sub cboTrack_Click()
'do something here
End Sub

Private Sub Example()
cboTrack.Text = cboTrack.List(0) '<========= 'I have a breakpoint
here
End Example

Whenever the control is done with;
cboTrack.Text = cboTrack.List(0) '<========= 'I have a breakpoint
here
it goes to combo box click event. But i haven't called it and have no
intension of doing it either.
Is there a way to stop VB to go to combo box click event ofcourse without
deleting the event itself?

Thanks,
Simon