Search:

Type: Posts; User: helloworld922

Search: Search took 0.11 seconds.

  1. Replies
    22
    Views
    3,261

    Re: Creating a threaded applet

    Quick and dirty applet tutorial:

    1. There is no main method.
    2. You do not have a constructor (well, you do but generally you don't provide anything other than the default constructor). All...
  2. Replies
    22
    Views
    3,261

    Re: Creating a threaded applet

    You can't create a thread from a non-Runnable object. You can have your applet implement runnable, but then it won't have all of the initialization stuff done correctly.

    What you should do is move...
Results 1 to 2 of 2