Search:

Type: Posts; User: jps

Search: Search took 0.12 seconds.

  1. Re: Error: Invalid method declaration; return type required. Related to JFrames.

    window.getContentPane().add(BorderLayout.NORTH,topPanel);
    perhaps
    window.getContentPane().add(topPanel, BorderLayout.NORTH);
    I think the component is the first parameter in add...

    ...and:...
  2. Re: Error: Invalid method declaration; return type required. Related to JFrames.

    public GuessTheNumberButton(){
    //...
    return 0;
    }
    See something wrong with this picture?
Results 1 to 2 of 2