Recent content by doug5289

  1. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    This is only my fourth week of class and I am not sure what you mean by code and code tags. This is the entire program with what I tried to enter along with the comments of what I am suppose to do for class with this project. The component side compiled but not the test side. thanks
  2. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    Anyone want to help? My class side compile but not sure if it is right! Tester side needs help.. public class LastNameFirstName_BankAccount { //Class's Instance Variables private double balance; private String name; //Instance Constructor //Student: Write the instance...
  3. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    This is the class side of the program Thanks for your help, this side compiled. public class RistDouglas_DoubleMyNumber { //Instance Variables private int num, myNumber; //Instance Constructor public RistDouglas_DoubleMyNumber() { this.num = myNumber; }...
  4. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    I am getting this error while compiling this: Any help would sure be welcomed. I am in my first year and never dreamed it could be this hard. E:\RistDouglas_DoubleMyNumberTester.java:21: cannot find symbol symbol : constructor RistDouglas_DoubleMyNumber(int) location: class...
  5. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    Only have g2 and trying to switch from draw to fill...
  6. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    Already set color, using g2.draw(rect1); want to change to g2.fill(rec1); It will draw but won't fill
  7. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    I am trying to fill a rectangle and no matter what I put it doesn't fill it up. Any idea's? g.fillRect(10, 10, 80, 30);
  8. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    Worked perfect! End to a long stressful day and I have just begun...
  9. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    I found what I was missing, it was declaring the color. I did have the import java.awt.color loaded but it did not find the symbol, as soon as I put in Color myColor; it compiled I do need to know how to set a color not using the word red or green etc with using the numbers (255, 200,150)...I...
  10. D

    Comp Sci Troubleshooting "Cannot find symbol" JAVA Error

    Homework Statement Why am I getting an error message "Cannot find symbol" Homework Equations The Attempt at a Solution
Back
Top