Firing a ComboBox
Hello friends
I want to do the "click event" into a JComboBox (not only when the user clicks fisically the combo) for show the list of combo's options.
I tried to do a fire manually (it see this code by google):
combo.actionPerformed(new ActionEvent(this, 0,"CHANGE"));
More difficult now. I want to do this in a JComboBox wich it's into a JTable (with a Render). I have the same problem, when i do a :
tabla.changeSelection(0, pos, false,false);
I have the focus inside the combobox, but i need to do a "click event" for display the list of options inside the combo.
Thanks thanks !!!!

