Forum: Java Sep 14th, 2006 |
| Replies: 4 Views: 1,995 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,995 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,689 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: 4,003 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: 4,003 In the Storefront class are you importing the package that Item is in? |
Forum: Java Aug 11th, 2006 |
| Replies: 10 Views: 4,003 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,575 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,575 My guess is a Java Sheet is something that is Strong Black Coffee induced. |
Forum: Java Feb 22nd, 2006 |
| Replies: 8 Views: 2,733 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,733 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,733 did you actually type <location here>? Or did you use something like C:/code/src? |
Forum: Java Feb 21st, 2006 |
| Replies: 8 Views: 2,733 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... |
Forum: JSP Oct 14th, 2005 |
| Replies: 25 Views: 15,568 Don't make it unique. Make it functional.
Unique sites don't get used. Functional sites do.
Regards,
Nate |
Forum: JSP Oct 13th, 2005 |
| Replies: 25 Views: 15,568 There is a lot to think about here...
First, are you going to build the whole system in JSP? Using a combination of servlets with JSP would be much better.
Is everything going to be secure? ... |
Forum: JSP Oct 3rd, 2005 |
| Replies: 12 Views: 69,313 You should be creating a new topic for a new question. You also might want to be asking this question in the JavaScript (http://www.daniweb.com/techtalkforums/forum143.html) forum.
Regards,
... |
Forum: JSP Aug 23rd, 2005 |
| Replies: 1 Views: 10,059 You should be able to find the driver from the Microsoft SQL server site: http://www.microsoft.com/sql/default.mspx
If that doesn't work, you should also be able to use the ODBC-JDBC bridge... |