Forum: Java Jul 25th, 2006 |
| Replies: 12 Views: 2,501 :lol: You definately should post more often. |
Forum: Java Jul 24th, 2006 |
| Replies: 12 Views: 2,501 :lol: :lol: :lol: :lol: :lol: :lol:
I love threads like these.
Wow? You wanna cookie? |
Forum: Java May 2nd, 2006 |
| Replies: 3 Views: 825 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 Views: 825 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 Maybe the JavaScript forum could help you? |
Forum: Java Apr 19th, 2006 |
| Replies: 18 Views: 12,911 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 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 My bad dragon. I assumed it was correct since it worked ;) |
Forum: Geeks' Lounge Apr 3rd, 2006 |
| Replies: 8 Views: 1,954 At the rate you're going you'll have more enemies than friends. |
Forum: C Apr 2nd, 2006 |
| Replies: 25 Views: 9,498 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 I've thought about writing one of those. I may just do it. |
Forum: Java Mar 3rd, 2006 |
| Replies: 3 Views: 1,686 Ummm it looks like you already did that?? |
Forum: Java Nov 28th, 2005 |
| Replies: 7 Views: 6,095 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 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 Applets extend JApplet not JFrame ;) |
Forum: Java Nov 20th, 2005 |
| Replies: 2 Views: 2,120 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 When someone reffers you to this site. |
Forum: Software Development Job Offers Sep 8th, 2005 |
| Replies: 27 Views: 8,129 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 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 you mean I only get it for 30 days? :cry: :cry: :cry: |
Forum: Software Development Job Offers Sep 6th, 2005 |
| Replies: 27 Views: 8,129 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 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 Wait, wait....43
NOW I want my prize. |
Forum: Java Aug 5th, 2005 |
| Replies: 5 Views: 1,970 |
Forum: Java Aug 1st, 2005 |
| Replies: 13 Views: 3,748 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 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 Views: 1,567 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 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 |
Forum: Java Jun 22nd, 2005 |
| Replies: 13 Views: 3,748 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 Views: 3,748 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 Views: 3,748 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 The finally clause executes wheter or not an exception is thrown. Except when a catch clause invokes System.exit() of course! |