Search Results

Showing results 1 to 35 of 35
Search took 0.05 seconds.
Search: Posts Made By: server_crash
Forum: Java Jul 25th, 2006
Replies: 12
Views: 2,501
Posted By server_crash
:lol: You definately should post more often.
Forum: Java Jul 24th, 2006
Replies: 12
Views: 2,501
Posted By server_crash
:lol: :lol: :lol: :lol: :lol: :lol:

I love threads like these.



Wow? You wanna cookie?
Forum: Java May 2nd, 2006
Replies: 3
Solved: Help please
Views: 825
Posted By server_crash
Why does int menu return an int, but you aren't returning anything?
The itemCost method is the one that should be returning something, in my opinion.
Forum: Java May 2nd, 2006
Replies: 3
Solved: Help please
Views: 825
Posted By server_crash
Why does int menu return an int, but you aren't returning anything?
The itemCost method is the one that should be returning something, in my opinion.
Forum: Java Apr 24th, 2006
Replies: 2
Views: 909
Posted By server_crash
Maybe the JavaScript forum could help you?
Forum: Java Apr 19th, 2006
Replies: 18
Views: 12,911
Posted By server_crash
English classes everywhere are ignoring grammar and all of India thinks they are cut out for programming. I can tell you first hand that English teachers spend more time on stupid crap like poetry...
Forum: DaniWeb Community Feedback Apr 4th, 2006
Replies: 12
Views: 2,004
Posted By server_crash
I had the same thing happen to me. I swear I opened the home page but it took me to profile.php and said file not found. Not sure why it took me to that page.
Forum: C Apr 3rd, 2006
Replies: 25
Views: 9,498
Posted By server_crash
My bad dragon. I assumed it was correct since it worked ;)
Forum: Geeks' Lounge Apr 3rd, 2006
Replies: 8
Views: 1,954
Posted By server_crash
At the rate you're going you'll have more enemies than friends.
Forum: C Apr 2nd, 2006
Replies: 25
Views: 9,498
Posted By server_crash
Yep it's pretty simple:


int main(int argc, char *argv[])
{
int x = 1000001;
cout << char(x) << endl;
getchar();
}
Forum: Java Mar 20th, 2006
Replies: 18
Views: 12,911
Posted By server_crash
I've thought about writing one of those. I may just do it.
Forum: Java Mar 3rd, 2006
Replies: 3
Views: 1,686
Posted By server_crash
Ummm it looks like you already did that??
Forum: Java Nov 28th, 2005
Replies: 7
Views: 6,095
Posted By server_crash
You have semi-colons after the if, and else statements. They shouldn't be there.
Forum: Java Nov 28th, 2005
Replies: 7
Views: 6,095
Posted By server_crash
Shouldn't these be parsed:


Mort = answer.getText();
Int = answera.getText();
T = answerb.getText();

MonthPay.setText( "$" + (Int - (Mort * Int * T)) / (T*12));
Forum: Java Nov 25th, 2005
Replies: 2
Views: 1,561
Posted By server_crash
Applets extend JApplet not JFrame ;)
Forum: Java Nov 20th, 2005
Replies: 2
Views: 2,120
Posted By server_crash
You could use a StringTokenizer to read everything that's a word(doesn't read white space).
Get the length of the word.
In a for loop you can process the char at index 'i' by using charAt(i).
Forum: Geeks' Lounge Oct 27th, 2005
Replies: 10
Views: 4,287
Posted By server_crash
When someone reffers you to this site.
Forum: Software Development Job Offers Sep 8th, 2005
Replies: 27
Views: 8,129
Posted By server_crash
Thanks Mike. The bad thing is I don't see an edit button!
Forum: Software Development Job Offers Sep 7th, 2005
Replies: 27
Views: 8,129
Posted By server_crash
Cool! I don't feel cheated in no way, shape or form.

I do think it's set up for 30 days though. That's good enough for me since it was give to me, but I don't get many emails that often.

...
Forum: Software Development Job Offers Sep 7th, 2005
Replies: 27
Views: 8,129
Posted By server_crash
Forum: Software Development Job Offers Sep 6th, 2005
Replies: 27
Views: 8,129
Posted By server_crash
46

I waited for a little while so it wouldn't be obvious what the answer was, but I don't see anyone else guessing.
Forum: Java Sep 3rd, 2005
Replies: 3
Views: 2,332
Posted By server_crash
catch the exception:

public void actionPerformed(ActionEvent ae)
{
try
{
methodcall();
}
catch(IOException ioe)
{
Forum: Software Development Job Offers Sep 1st, 2005
Replies: 27
Views: 8,129
Posted By server_crash
Forum: Software Development Job Offers Sep 1st, 2005
Replies: 27
Views: 8,129
Posted By server_crash
Forum: Software Development Job Offers Aug 28th, 2005
Replies: 27
Views: 8,129
Posted By server_crash
Forum: Java Aug 5th, 2005
Replies: 5
Views: 1,970
Posted By server_crash
He just told you!
Forum: Java Aug 1st, 2005
Replies: 13
Solved: class rectangle
Views: 3,748
Posted By server_crash
Where's your work and why are you posting in someone elses thread?
Forum: Viruses, Spyware and other Nasties Jul 26th, 2005
Replies: 13
Views: 4,067
Posted By server_crash
That's some dirty spyware. I had something like that once and it took forever to get it off. I'll try to find out what tools I used and get back to you.
Forum: Java Jul 21st, 2005
Replies: 4
Solved: textFields help
Views: 1,567
Posted By server_crash
I don't think you want JTextFields. Look up JOptionPanes. They give you many options to get input from the user via an input box.
Forum: Windows NT / 2000 / XP Jul 18th, 2005
Replies: 3
Views: 6,321
Posted By server_crash
It's the same thing except change the s to an r.

shutdown -r -t 00
Forum: Windows Software Jul 10th, 2005
Replies: 10
Views: 12,842
Posted By server_crash
Forum: Java Jun 22nd, 2005
Replies: 13
Solved: class rectangle
Views: 3,748
Posted By server_crash
GetLocation() probably needs to make a call to the Point2D class. I'm guessing your class has a constructor that takes two arguments, an x and a y. If so, you could say:

public void getLocation()...
Forum: Java Jun 22nd, 2005
Replies: 13
Solved: class rectangle
Views: 3,748
Posted By server_crash
Im pretty sure that the get method returns a point....From there it's up to the recipitent of the point to call the getX() getY() methods on that point. There's really now way to return both of...
Forum: Java Jun 22nd, 2005
Replies: 13
Solved: class rectangle
Views: 3,748
Posted By server_crash
What exactly are you having problems with during the use of get and setLocation()... You can specify an x and y int as arguments or pass a point to it. You'll have to be more specific before I can...
Forum: Java Oct 25th, 2004
Replies: 3
Views: 7,001
Posted By server_crash
The finally clause executes wheter or not an exception is thrown. Except when a catch clause invokes System.exit() of course!
Showing results 1 to 35 of 35

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC