Re: Combo Box Click Event
That happens when the combo style is set to drop down list. You may need to put in a flag in the click event to process the following code or skip it.
option explicit
dim skipcombo as boolean
private sub cboTrack_click()
if skipcombo = true then 'skip the click event
exit sub
end if
'process this event if skipcombo = false
do something ...
do something else ...
end sub
Private Sub Example()
skipcombo = true
cboTrack.Text = cboTrack.List(0) '<========= 'I have a breakpoint
here
skipcombo = false
End sub
David Paulson