Search:

Type: Posts; User: jim829

Search: Search took 0.38 seconds.

  1. Re: compiler error "Cannot make a static reference to the non-static field TextArea1"

    You can also check out the Java tutorials which provide a good basic start. The link is in my signature.

    Regards,
    Jim
  2. Re: compiler error "Cannot make a static reference to the non-static field TextArea1"

    To avoid the error you're talking about I do the following:


    public class SomeClass {
    public static void main(String[] args) {
    new SomeClass().start();
    }

    public void start()...
Results 1 to 2 of 2