Forum: Java Jul 30th, 2006 |
| Replies: 3 Views: 1,760 Actually I changed that but then I get another runtime error as follows and cannot see where it is asking me to make the change:
ERROR:
Exception in thread "main" java.lang.Error: Do not use... |
Forum: Java Jul 30th, 2006 |
| Replies: 3 Views: 1,760 I have some code that I need help with. The code compiles but I get a runtime error. Here is the error and the code:
ERROR:
Exception in thread "main" java.lang.Error: Do not use... |
Forum: Java Jul 27th, 2006 |
| Replies: 17 Views: 2,944 So what exact changes would you make? I am not a Java guy and am stuck on this problem and haven't a clue as to where to go or what to add or subtract to make this work. |
Forum: Java Jul 26th, 2006 |
| Replies: 17 Views: 2,944 What do I need to do to make this work correctly?
import javax.swing.JTextField;
public class ScoreboardTimer extends Thread
{
private int timer; // the number of seconds remaining on... |
Forum: Java Jul 25th, 2006 |
| Replies: 17 Views: 2,944 So with all that said any suggestions on changing the code to make the timer count down? |
Forum: Java Jul 24th, 2006 |
| Replies: 17 Views: 2,944 The problem I am having is getting the last part working. The timer is the part I am having trouble with which is the last code I submitted.
import java.awt.Frame;
import... |
Forum: Java Jul 24th, 2006 |
| Replies: 3 Views: 1,542 I may be missing something but this does not get my timer in the application to work. Can you please expand upon your answer for the ignorance I am obviously showing? |
Forum: Java Jul 23rd, 2006 |
| Replies: 3 Views: 1,542 I am having trouble getting my timer class working with my scoreboard frame and application. Any constructive help is appreciated.
public class ScoreboardTimer extends Thread
{
private int... |
Forum: Java Jul 15th, 2006 |
| Replies: 17 Views: 2,944 I am looking for someone that can help me online for an hour or so maybe a few times for the next few weeks that can help me understand what I am supposed to do for my class programs. I am not... |
Forum: Java Jun 5th, 2006 |
| Replies: 1 Views: 1,027 Here is the code I have, the problems I would like help with is as follows. I am unable to enter the id on the ID box and have it pull up the name of the person it coresponds to and the last window... |
Forum: Java Jun 5th, 2006 |
| Replies: 1 Views: 1,027 " array dimension missing
TextField dsplNameField = new TextField[];"
What we are trying to do is allow user to input id and that will match to ids in the array and coresponding name |
Forum: Java Jun 4th, 2006 |
| Replies: 5 Views: 12,702 How do you use the sleep method? |
Forum: Java Jun 4th, 2006 |
| Replies: 5 Views: 12,702 So how does this scanner util class work? |
Forum: Java Jun 3rd, 2006 |
| Replies: 5 Views: 12,702 I am needing to put a pause in between each mortgage calculation and do not know what the C equivalant of getchar() is in Java. Here is the code I have so far, after it is finished with the first... |
Forum: Java Jun 3rd, 2006 |
| Replies: 1 Views: 1,866 Here is my updated code:
import java.io.*; // java input output package
import java.text.DecimalFormat; // java package for the decimal
class PaymentArray3 extends Thread //class name... |
Forum: Java Jun 3rd, 2006 |
| Replies: 1 Views: 1,866 Is there an easy way for me to combine these two programs? What I am wanting to use an array for the different loans. Display the mortgage payment amount for each loan and then list the loan balance... |
Forum: Java Jun 3rd, 2006 |
| Replies: 3 Views: 2,632 Thanks that is exactly what I was looking for. I appreciate your help. |
Forum: Java May 28th, 2006 |
| Replies: 3 Views: 2,632 > I am trying to code an assignment that calculates the
> payments for a mortgage of a loan amount using 3
> separate rates and term years. I have it working but
> it wants to calculate each loan... |