Search:

Type: Posts; User: curmudgeon

Search: Search took 0.11 seconds.

  1. Replies
    7
    Views
    2,199

    Re: Simple Applet Troubles

    But your question has nothing to do with the original question and so really doesn't belong in his thread.



    No worries, but if you get stuck, again consider creating a new question in this...
  2. Replies
    4
    Views
    3,647

    Re: Simple Applet Troubles

    @bruizer: I'm not a moderator on this forum, but most forums that I've been involved with frown on a poster hijacking another poster's thread. Your question is important, so why not create a new...
  3. Replies
    7
    Views
    2,199

    Re: Simple Applet Troubles

    Best of luck!
  4. Replies
    7
    Views
    2,199

    Re: Simple Applet Troubles

    You're quite welcome!


    When you paint in a top-level window's paint method, you are painting over not just the work portion of the GUI but also its borders and child components, and this can...
  5. Replies
    7
    Views
    2,199

    Re: Simple Applet Troubles

    Your Practice class is extending JApplet, a class that implements the Serializable interface. This means that Practice by extension also implements this interface, and the interface's contract...
  6. Replies
    7
    Views
    2,199

    Re: Simple Applet Troubles

    Your code doesn't have a valid init() method -- check your spelling:



    // this should be spelled "init"
    public void inti() {
    // ...
    }

    Don't forget to use @Override annotations to make...
Results 1 to 6 of 6