B4J Question B4j combobox - is there a SELECTIONCHANGED event?

Hilton

Active Member
Licensed User
Longtime User
Hi Folks,

I was looking for some event that would tell me that the user has made a selection from the combobox. If it does not exist how can I implement it using the dreaded JavaObject (I only say that because I am not Java literate, but it looks as if I may have to grit my teeth and learn more about it).

Thanks,
Hilton.
 

udg

Expert
Licensed User
Longtime User
You can check
Sub yourcombobox_SelectedIndexChanged(Index As Int, Value As Object)
or
Sub yourcombobox_ValueChanged(Value As Object)

udg
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
test.gif
 
Upvote 0
Top