Do you know any way to remove the border from a JComboBox in Java? I try the following code
public class ComboFrame extends JFrame { public ComboFrame()
If you want to use the windows L&F, you can do cmd.setUI(new WindowsComboBoxUI()); If you, however, want to be able to use any L&F, you might be better off using the solution proposed by Jeach.
cmd.setUI(new WindowsComboBoxUI());