Search:

Type: Posts; User: aussiemcgr

Search: Search took 0.09 seconds.

  1. Re: Program to run as Applet & Application - need fresh eye's simple mistake somewher

    You can't run it as an applet. You have to run it as an application.
  2. Re: Program to run as Applet & Application - need fresh eye's simple mistake somewher

    No, it still thinks its a JApplet. What line is the error being thrown from?
  3. Re: Program to run as Applet & Application - need fresh eye's simple mistake somewher

    When you mention you are getting an error, it helps to tell us what kind of error. To call the JFrame Super Constructor, you can just say:

    public JRockPaperScissors(){
    super();...
  4. Re: Program to run as Applet & Application - need fresh eye's simple mistake somewher

    What do you mean by "hangs for a bit"? Does it just take some time to load, or does it stop responding for a few seconds and then comes back to life? If it is just taking its time, it could be your...
  5. Re: Program to run as Applet & Application - need fresh eye's simple mistake somewher

    You do need a main to run an application. In your main, you left out the parentheses:
    JRockPaperScissors test = new JRockPaperScissors();

    Also, you need to take out extends JApplet and replace it...
Results 1 to 5 of 5