Forum: Java Sep 14th, 2006 |
| Replies: 4 Views: 1,954 Finally figured it out. It took a while...
bExitButton is being declaired in the class twice.
Changed
JButton bExitButton = new JButton("Exit");
to
bExitButton = new JButton("Exit");
... |
Forum: Java Sep 13th, 2006 |
| Replies: 4 Views: 1,954 could you post more of your code please. there doens't even seem to be a complete class there. :)
Also, do a System.out.println(bExitButton) right after the bExitButton is created and then do a... |
Forum: Java Aug 29th, 2006 |
| Replies: 4 Views: 1,665 Of course you need help with deciding on what to do for a semester ending project.
How about trying one of these?
http://www.daniweb.com/techtalkforums/thread48951.html... |
Forum: Java Aug 11th, 2006 |
| Replies: 10 Views: 3,943 No.
Try: import com.warren.ecommerce.Item;
If that doesn't work we will have to try something else. |
Forum: Java Aug 11th, 2006 |
| Replies: 10 Views: 3,943 In the Storefront class are you importing the package that Item is in? |
Forum: Java Aug 11th, 2006 |
| Replies: 10 Views: 3,943 Is the Item class being compiled? As in are there a Item.java and Item.class files?
What is the package of the Item class? |
Forum: Java Jul 25th, 2006 |
| Replies: 12 Views: 2,512 If i was going to write a programming language I think I would name it Oak. For the oak tree outside my office. Yeah. I think thats the ticket. Oak. I think marketing people could really run... |
Forum: Java Jul 24th, 2006 |
| Replies: 12 Views: 2,512 My guess is a Java Sheet is something that is Strong Black Coffee induced. |
Forum: Java Feb 22nd, 2006 |
| Replies: 8 Views: 2,678 Are you using packages in your java classes? If you're using packages you need to go <your>.<package>.<extension>.<here>.TEditor
Here is an example without packages that works.
I created a... |
Forum: Java Feb 22nd, 2006 |
| Replies: 8 Views: 2,678 Hmmm.
I would recommend trying to jar up your application and then pointing your classpath toward your jar file. I'm not exactly sure how to get individual classes into the classpath. I think... |
Forum: Java Feb 21st, 2006 |
| Replies: 8 Views: 2,678 did you actually type <location here>? Or did you use something like C:/code/src? |
Forum: Java Feb 21st, 2006 |
| Replies: 8 Views: 2,678 You are most likely correct that you're having a classpath issue.
My guess is you're on a windows machine.
Create a file called database.bat (the real name doesn't matter, but the .bat part... |