I have an applet and I want to add a jbutton. The problem is the button is too big, I already used the setSize() method but still it doesn't work. Perhaps the setting of setSize could might be wrong.
could someone got an idea about this problem?
Thanks...
private JButton newGame = new JButton("New Game");
private JButton players = new JButton("Players");
private JButton quit = new JButton("Quit");
public void init()
{
Container content = getContentPane();
content.setLayout(new BorderLayout());
mainPanel = new JPanel();
getContentPane().add(mainPanel);
setVisible(true);
setSize(400, 400);
content.add(newGame);
content.add(players);
content.add(quit);
}


Applet.setSize(400, 400);Don't call that. An applet's size is set in the HTML (or can be changed using JavaScript). Calling that method from within an applet will cause 'strange and unpredictable' behavior. Results will vary in different versions of different browsers on different OS' using different versions (and suppliers) of Java VMs. – Andrew Thompson Sep 13 '11 at 4:32