fxruby
fxruby copied to clipboard
Query about Combobox
Hi,
Is there a way to open the menu pane of a Combobox using code?
example, FXComboBox.showMenu(TRUE)
TIA
Try to invoke the event that would open that. It has been a long time since I don't do that, but I think you could do something like this:
@widget.handle(@widget, FXSEL(SEL_COMMAND, 0), nil)
That would trigger the SEL_COMMAND event on certain @widget, in your case, the #FXComboBox. Try to see what event open it.
Hope this helps somehow. Cheers.
Thanks for your reply.
I could not find a particular event that opens the menu of the combo box unfortunately
Cheers