|
Re: Visible area insize JFrame
The JPanel and JFrame both inherit the JComponent class which has the method setPreferredSize(). Try that.
frmWhatever.setPreferredSize(new Dimension(width, height));
__________________
I would love to change the world, but they won't give me the source code!
|