Posts by André Pinto • 31 points
1 post
-
3
votes3
answers1552
viewsQ: How to set index when inserting item in Jcombobox?
I wonder if someone could help me. I’m trying to add items to a JComboBox: Pessoa carlos = new Pessoa(12, "Carlos" , 0.0f); jComboBoxF.addItem(carlos.getNome()); Pessoa maria = new Pessoa(23,…