aspose file tools
The moose likes Swing / AWT / SWT and the fly likes JComboBox stores same Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "JComboBox stores same " Watch "JComboBox stores same " New topic
Author

JComboBox stores same

Giuseppa Cefalu
Ranch Hand

Joined: Jul 15, 2011
Posts: 121
Hi,

The comboBox below, or variable str stores the table name selected thorugh the dropdown of the combobox twice. System.out.println(str); outputs:
test5
test5

Also; constructor initialization in the related class (public class Dat extends AbstractTableModel) through dtable = new Dat(str); happens twice, and since I use the table name to open the table for reading, the table gets opened twice. I have not idea of what is going on? Could you please read my code?
Thank you.

Rob Camick
Ranch Hand

Joined: Jun 13, 2009
Posts: 1788
    
    2
Use an ActionListener instead of an ItemListener.

An ItemListener has two states, selected/unselected.
Giuseppa Cefalu
Ranch Hand

Joined: Jul 15, 2011
Posts: 121
Thank you! I did that and it works.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: JComboBox stores same
 
Similar Threads
Refresh JTable
regarding JTable issue
JTable
JTable action listener
MultiComponent JTable