Forum: Computer Science 33 Days Ago |
| Replies: 2 Views: 467 |
Forum: Java Oct 18th, 2009 |
| Replies: 7 Views: 346 Take a look at Line 23 where you declare the int variable vacation. This variable is declared within the body of a conditional statement, which means its lifespan is confined to that conditional... |
Forum: Geeks' Lounge Oct 16th, 2009 |
| Replies: 179 Views: 9,561 Does this guy ever stop? <rant rant rant...ad infinitum> |
Forum: Geeks' Lounge Oct 14th, 2009 |
| Replies: 179 Views: 9,561 What I cannot understand is why this idiotic discussion has been allowed to continue, the OP is eithera troll or a narrow minded person who is unable to accept the views of others. Close the thread... |
Forum: Java Oct 7th, 2009 |
| Replies: 4 Views: 319 nomemory means compile the classes then run TestCircle. You cannot run Circle directly as it has no main method. main is the entry point for you program. As nomemory said, don't skip the basics.... |
Forum: Geeks' Lounge Oct 7th, 2009 |
| Replies: 179 Views: 9,561 Somehow I don't think my Grandmother would understand why she has to "sudo" everything, and I don't think a hardcore gamer would accept the limitations WINE offers... Windows is only vulnerable to... |
Forum: DaniWeb Community Feedback Oct 5th, 2009 |
| Replies: 5 Views: 567 Crikey, you fixed that fast! |
Forum: DaniWeb Community Feedback Oct 5th, 2009 |
| Replies: 5 Views: 567 Is that what it should do?
Here (http://www.daniweb.com/code/snippet227078.html)
It is displaying my name as it appears in my profile as opposed to my DaniWeb screen name. Is that a bug or is... |
Forum: DaniWeb Community Feedback Oct 3rd, 2009 |
| Replies: 43 Views: 4,738 That's really cool. Lots of great new features on the site! Great job! |
Forum: DaniWeb Community Feedback Oct 3rd, 2009 |
| Replies: 43 Views: 4,738 Oh, so its a kind of like a post review system? |
Forum: Java Oct 3rd, 2009 |
| Replies: 1 Views: 238 You can create an ImageIcon and display it as the content of a JLabel. Then put the JLabel in the content pane of your JFrame. Look here:
Tutorial... |
Forum: DaniWeb Community Feedback Oct 1st, 2009 |
| Replies: 9 Views: 708 Great, thanks very much, I will try not to do it again! You saved me some embarrassment there lol! Thanks again :) |
Forum: DaniWeb Community Feedback Oct 1st, 2009 |
| Replies: 9 Views: 708 No, I don't have that option I'm afraid :-/ |
Forum: Java Oct 1st, 2009 |
| Replies: 4 Views: 1,363 I just wanted to demonstrate a quick point regarding Constructors & inheritance.
Look at these two classes and think about what you might expect to see after the main method has run.
Notice that... |
Forum: DaniWeb Community Feedback Oct 1st, 2009 |
| Replies: 43 Views: 4,738 I think that would be a great idea too Ancient Dragon. Maybe we could have an option to neg rep a member UPTO our maximum neg rep amount? I don't think I have ever neg repped anyone actually! |
Forum: DaniWeb Community Feedback Sep 30th, 2009 |
| Replies: 6 Views: 391 Hi all, I hope you are well. I have just noticed that my solved thread count as it appears in forum posts is one less than the count on my profile. This seemed odd, so I looked at some other members... |
Forum: Game Development Sep 28th, 2009 |
| Replies: 1 Views: 485 As far as I can tell, the Intel(R) 82865G Graphics Controller does not support pixel shader 1.1 I am afraid.
More (http://www.intel.com/support/graphics/sb/cs-014257.htm) information. |
Forum: Java Sep 28th, 2009 |
| Replies: 3 Views: 640 theo19, for a start you have confused the names on lines 22 to 24, you have written:
JPanel row2pane1 = new JPanel();
JPanel row3pane1 = new JPanel();
JPanel row4pane1 = new JPanel();
... |
Forum: Python Sep 27th, 2009 |
| Replies: 7 Views: 791 Hi there, I have found a really good link on how to read a file in Python in various ways:
here (http://www.java2s.com/Tutorial/Python/0240__File/Demonstratesreadingfromatextfile.htm)
I hope... |
Forum: DaniWeb Community Feedback Sep 24th, 2009 |
| Replies: 18 Views: 857 Good question - I was wondering that myself ! I liked the "big brother" power it gave me lol |
Forum: Java Sep 22nd, 2009 |
| Replies: 6 Views: 372 Ok the problem there is that you have not initialized the variable MenuBar before you call the method buildMenus() on it, therefore you get a null pointer exception. You need to initialize MenuBar... |
Forum: C# Sep 22nd, 2009 |
| Replies: 10 Views: 590 Hi Serkan Sendur, I hope you are well. Reading data from a .msi file is not something I have done myself before but I did some research for you and came up with this :
... |
Forum: Java Sep 22nd, 2009 |
| Replies: 6 Views: 372 Peter_budo you beat me to it! :) Kahaj, what you could do is :
declare and initialize MenuBar as a class field, instead of a local variable in method buildMenus() :
JMenuBar MenuBar;
you can... |
Forum: Java Sep 8th, 2009 |
| Replies: 3 Views: 724 Hi B89Smith, you can add the -deprecation option to the java command, as per the message, and recompile:
You are using a part of the API that is now obsolete. The messages from the compile... |
Forum: Java Sep 7th, 2009 |
| Replies: 2 Views: 275 Hi runee1000, welcome to the forums. Please could you use code tags for code, it just makes it much easier to read.
import java.util.*;
/**
* AWT Sample application
*
* @author
* @version... |
Forum: ASP.NET Jun 2nd, 2008 |
| Replies: 6 Views: 984 Nice one, have been trying to find some help for you. So I take it that it all works fine now? |
Forum: C# May 14th, 2008 |
| Replies: 5 Views: 1,968 Where have you cast the variable Y? |
Forum: VB.NET May 11th, 2008 |
| Replies: 14 Views: 4,252 Jx_man probably knows it off the top of his head. He is the Don! |
Forum: Computer Science May 8th, 2008 |
| Replies: 15 Views: 1,724 That is a valid point JWenting, I simply googled it and found lots of links that I thought were useful. |
Forum: ASP.NET May 8th, 2008 |
| Replies: 9 Views: 728 I would recommend you google some C# tutorials with ASP.NET 2.0 seeing as you have experience in Java. The syntax is very similar in java and c#. I can point you to some great tutorials if you need... |
Forum: Computer Science May 8th, 2008 |
| Replies: 15 Views: 1,724 I did that for an assignment when I was studying my Bsc (hons) I am pretty sure the answers are at the links Salem posted... |
Forum: Geeks' Lounge Apr 29th, 2008 |
| Replies: 25 Views: 3,092 Hi all hope you are well, take a look at this it is funny (and possibly a little bit true). |
Forum: Windows Vista and Windows 7 Apr 8th, 2008 |
| Replies: 8 Views: 5,326 I would be surprised if it did work. I think that each key might be unique to each disc (for home users at least) - to prevent piracy. I might be wrong here though |
Forum: Geeks' Lounge Apr 4th, 2008 |
| Replies: 3 Views: 638 he's a walking EMP bomb!lol |
Forum: C# Apr 2nd, 2008 |
| Replies: 3 Views: 3,829 |
Forum: Geeks' Lounge Mar 31st, 2008 |
| Replies: 50 Views: 4,468 Anything by the scissor sisters, eminem or rap of any kind drives me mad lol |
Forum: Geeks' Lounge Feb 25th, 2008 |
| Replies: 61 Views: 5,289 Thank you for holding your breathe while I smoke |
Forum: C# Feb 7th, 2008 |
| Replies: 9 Views: 4,085 about half way down that last link I think that info might help |
Forum: Java Jan 22nd, 2008 |
| Replies: 5 Views: 1,281 also ensure your firewall is set to allow connections on port 8080 |