Forum: Java Apr 3rd, 2007 |
| Replies: 13 Views: 10,182 Hi JT,
I haven't used this in probably 2 years but lo and behold I get a message in my e-mail and decided to check it out.
The only possible thing I can think of is to instead of reorganizing... |
Forum: Java Sep 13th, 2004 |
| Replies: 3 Views: 4,103 you should probably add another else to that statement incase number1 is less than number2 because in that case you'll need another string statement to paint. |
Forum: Java Sep 13th, 2004 |
| Replies: 3 Views: 4,103 yea your comparison is badly coded.
Your code:
if ( number1 == number2 )
if ( number1 > number2 );
this won't work.
if(number1 == number2) |
Forum: Java Sep 13th, 2004 |
| Replies: 4 Views: 2,035 I'm not too sure if this will work but, you can try some crazy casting.
double hms = (si / 3600);
int remainder = (int)hms;
double remainder2 = hms - (double)remainder;
Note: it's 4 a.m.... |
Forum: Java Sep 13th, 2004 |
| Replies: 6 Views: 2,629 To start you'll want to script out the flow of your program. Maybe with a drawing. You have to get a feel for how the block structure will go. For instance:
>variables
>ask user for dollar... |
Forum: Java Apr 26th, 2004 |
| Replies: 13 Views: 10,182 I figured it out and now know more about Btree than I ever thought possible |
Forum: Java Apr 14th, 2004 |
| Replies: 13 Views: 10,182 I'm trying to write a Btree remove method in JAVA I'm having trouble combining my nodes and then recursing up through the parent does anyone know where I can get some info about this online? |
Forum: Java Mar 26th, 2004 |
| Replies: 3 Views: 4,356 What exactly is this program supposed to do? Please post how the data should look in it's correct form. |
Forum: Web Browsers Mar 26th, 2004 |
| Replies: 11 Views: 4,993 http://www.spywareinfo.com/~merijn/downloads.html |
Forum: Web Browsers Mar 26th, 2004 |
| Replies: 11 Views: 4,993 update your virus scanner and your CWShredder. Run Ad Aware then run SpyBot S&D. Run them Both. Finally run the CWShredder. I think it's Mejin.org for the newest one or just click the update button... |
Forum: Java Feb 7th, 2004 |
| Replies: 4 Views: 7,471 there seems to be some bad code although I only caught one thing that really stood out.
public JTextField[] getFields()
{
return fields;
}
your comment said you're returning to the text... |
Forum: *nix Software Feb 3rd, 2004 |
| Replies: 16 Views: 4,990 did you chmod the executable?
chmod o+x I believe is the command. if not chmod x will do it. |
Forum: Computer Science Feb 3rd, 2004 |
| Replies: 27 Views: 10,703 C++ and Perl. Perl can be a really powerful language for networking especially server administration. Although it's mainly used for scripting actual application uses are also possible. My main... |
Forum: Java Feb 3rd, 2004 |
| Replies: 1 Views: 2,781 I don't believe you can do that without getting into system commands that change your background or running an applet all the time on your desktop. You might be able to make an applet on a webpage... |
Forum: C# Feb 3rd, 2004 |
| Replies: 11 Views: 63,766 I know you fixed it but I recall that C# doesn't allow for boolean values like true and false I'm thinking that was it am I correct? |
Forum: Java Feb 3rd, 2004 |
| Replies: 2 Views: 15,013 I'm not sure what your program design is but it sounds like you'll need to make a seperate class to hold the data within a structure like a tree. So as your tokenizer seperates each token check to... |