Bug? ComboBox - Should it have MouseClick events ?

Gary Miyakawa

Active Member
Licensed User
Longtime User
I'm trying to work with ComboBox and are looking for the MouseClick events. They are not showing up on the designer side (I am using Beta 5 which I love with a few small things that would be "nice")...

Is this my issue or designer issue ?

Thanks,

Gary Miyakawa
 

Gary Miyakawa

Active Member
Licensed User
Longtime User
Thank you Erel. That allows me to play a bit more ! (and understand more).

I built a focused changed event but noticed that the first time thru and I type into the combo box and hit the enter key, I get the following error message:

Unexpected event (missing RaiseSynchronousEvents): combo_focuschanged

My code looks like this:

B4X:
Sub combo_FocusChanged (HasFocus As Boolean)
    Log("Focuse Changed: " & HasFocus)
End Sub

The code works, just get that error message. Not sure if that is an issue or not but thought I should report it.

Thanks for all your work !

Gary Miyakawa
 
Top