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 !!!!

[730 byte] By [JosBravoa] at [2007-11-27 7:43:35]
# 1
combo.showPopup();
Michael_Dunna at 2007-7-12 19:24:18 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thaks a lot!I don't found this method via google, i suposse i have read more API java, and less google navigation... sorry friends.
JosBravoa at 2007-7-12 19:24:18 > top of Java-index,Desktop,Core GUI APIs...