> You could use .. setLookAndFeel(...) before you create the JButtons and
> then set it back to the old lookandfeel. I'm not sure, but I think that
> should work (slighty).
> > You could use .. setLookAndFeel(...) before you create the JButtons and
> > then set it back to the old lookandfeel. I'm not sure, but I think that
[quoted text clipped - 4 lines]
> Many (or most) of the Look-And-Feels are written to think that they are
> the only one in action.
JButton button = new JButton();
button.setUI(new javax.swing.plaf.metal.MetalButtonUI());
Jon A. Cruz - 21 Jan 2004 15:53 GMT
>>>You could use .. setLookAndFeel(...) before you create the JButtons and
>>>then set it back to the old lookandfeel. I'm not sure, but I think that
[quoted text clipped - 7 lines]
> JButton button = new JButton();
> button.setUI(new javax.swing.plaf.metal.MetalButtonUI());
Yes. But in many cases things will become confused if that's not the
current look and feel.