Search:

Type: Posts; User: Norm

Search: Search took 0.14 seconds.

  1. Replies
    4
    Views
    969

    Re: I dont know how to connect all the pieces

    How are you debugging the code to see what the problems are?
    To see what the code is doing, add some print statements that print out the values of variables as they are used and as their values are...
  2. Replies
    4
    Views
    969

    Re: I dont know how to connect all the pieces

    Create an instance of a class with a new statement.
    Save the reference to that instance to use in calling its methods:


    SomeClass refToClass = new SomeClass(someArgs); // create instance of...
Results 1 to 2 of 2