In my VB project the list is populated on the combo dropdown event. RB
doesn't appear to have this.
I've tried most events but can't find which one is triggered when the
user clicks the dropdown button.
Any help with this please?
In the combo's mousedown event, try deleting all rows and then adding
rows as you test the values of the other controls to see what to add.
After the rows have been added, return true from the mousedown event so
the system will handle the combo box properly.
- Dale
Thanks I tried it. The Mousedown event seems to be the closest to the vb
dropdown although I haven't tried it on Mac yet.
The Change event seems to handle the vb Click event and the TextChanged
is triggered when you type in rather than choose from the list.
Thats all I need, thanks.