Hi i got a JComboBox with a border I need to remove.
I tried:
JConboBox combo = new JComboBox();
combo .setBorder(BorderFactory.createEmptyBorder());
and
combo .setBorder(null);
But that didn't work. Any idea?
I want to remove exactly the border around the JConboBox.
