Forum: DaniWeb Community Feedback 7 Days Ago |
| Replies: 8 Views: 337 |
Forum: Java 10 Days Ago |
| Replies: 11 Views: 316 You never instantiate an object with the name br. |
Forum: Geeks' Lounge 10 Days Ago |
| Replies: 23 Views: 861 I see myself in there!!! ;) |
Forum: Java 10 Days Ago |
| Replies: 2 Views: 197 Being familiar with the Java API, available online here (http://java.sun.com/javase/6/docs/api/), is imperative if you plan to program any further in Java. Another fantastic resource is... |
Forum: DaniWeb Community Feedback 18 Days Ago |
| Replies: 36 Views: 2,649 Actually, I was the first abuser of the voting system. I down voted every single post by The Mad Hatter. So...way to be wrong ;) |
Forum: DaniWeb Community Feedback 30 Days Ago |
| Replies: 91 Views: 6,931 /Sigh
NoScript+AdblockPlus, USE THEM!!. I haven't seen these "new buttons" you guys are talking about, and it takes less than 2 seconds for all 30 posts on this page to load.
EDIT: Less than 1.5... |
Forum: Java 34 Days Ago |
| Replies: 10 Views: 508 This forum has no such policy, in fact you can reply to threads from over 5 years ago...if you really wanted too. Thank you for posting the solution to your problem, and for marking the thread as... |
Forum: DaniWeb Community Feedback Oct 19th, 2009 |
| Replies: 6 Views: 727 Hehe, I remember when you were called that, I used to wonder if you had warts everywhere ;) |
Forum: Java Oct 12th, 2009 |
| Replies: 2 Views: 259 Step 1: Learn Java.
Step 2: Google. |
Forum: DaniWeb Community Feedback Oct 4th, 2009 |
| Replies: 43 Views: 4,014 I just don't understand the point of it. People like AD complained because they couldn't leave neg rep without destroying someone's rep. So, instead of just having an option for no rep change when... |
Forum: DaniWeb Community Feedback Oct 4th, 2009 |
| Replies: 91 Views: 6,931 Sorry to be a dark cloud in all this but...
The new voting thing is terrible. As others have said it adds so much clutter to the design, its more information than anyone needs to know, its... |
Forum: DaniWeb Community Feedback Oct 3rd, 2009 |
| Replies: 9 Views: 877 My favorite forums has been there for awhile now.
I think the rep counters need to be reduced in size, or redesigned, they don't fit well with the rest of the page. |
Forum: DaniWeb Community Feedback Sep 24th, 2009 |
| Replies: 18 Views: 858 While this thread is on the topic of reputation:
I like that posts that receive lots of positive (and perhaps negative although I haven't come across that) have more than one green dot next to... |
Forum: Java Sep 22nd, 2009 |
| Replies: 4 Views: 400 Your link doesn't work, you have an extra http://
Here (http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html) is a working version of your link :) |
Forum: Java Sep 16th, 2009 |
| Replies: 4 Views: 302 No. Put some effort into the project yourself. We can help you with your program if you get stuck. You will never learn if people do the work for you. |
Forum: Java Mar 16th, 2009 |
| Replies: 2 Views: 1,418 boolean display = A.B(inputInfo);
The return statement you used is legal. You can return false, true, or a boolean variable when using a boolean method. When you call A.B() that line of code... |
Forum: Java Mar 16th, 2009 |
| Replies: 11 Views: 1,205 Why would you do this in your GeometricObject class? Just create a driver class, here's the one I made.
public class Tester {
public static void main(String[] args) {
Triangle tri = new... |
Forum: Geeks' Lounge Mar 16th, 2009 |
| Replies: 64 Views: 3,737 Maybe you should lobby to follow up on Rashakil's suggestion, Day Care (http://www.daniweb.com/forums/thread77095.html), but instead of creating a new forum, just rename this one :) |
Forum: Java Mar 15th, 2009 |
| Replies: 11 Views: 1,205 public Triangle(double s1, double s2, double s3)
{
this.side1=s1;
this.side2=s2;
this.side3=s3;
}
public Isosceles( double EQside, double otherside) |
Forum: Java Mar 14th, 2009 |
| Replies: 8 Views: 582 You need to post the section of code that is giving you trouble here, not the whole thing, only where you are getting an error (don't forget to tell us what error/exception you are getting.) A great... |
Forum: Java Mar 13th, 2009 |
| Replies: 12 Views: 774 He means do it yourself. Once you start writing and come across a concept you don't understand, ask for a little help (in the correct forum.) |
Forum: Geeks' Lounge Dec 3rd, 2008 |
| Replies: 41 Views: 3,573 Stevie Wonder said it best--"Music is a world within itself, it's a language we all understand." |
Forum: Java Nov 29th, 2008 |
| Replies: 12 Views: 995 And I want a billion dollars :-/ |
Forum: Java Nov 11th, 2008 |
| Replies: 2 Views: 504 Easiest way to do what? You haven't told us what you need help on (besides the vague "I want to add some more features"), we have no clue where your at with implementing these "new features" and we... |
Forum: Geeks' Lounge Nov 8th, 2008 |
| Replies: 10 Views: 932 I'll supply the tinfoil for a hat making party ;) |
Forum: Java Oct 29th, 2008 |
| Replies: 4 Views: 2,116 Just create a new color using your values. I added the line of code into your try statement.
try
{
red = Integer.parseInt(redText.getText());
green =... |
Forum: Java Oct 22nd, 2008 |
| Replies: 12 Views: 1,693 Try saving it to a .png instead of a .gif, that should (hopefully) work. |
Forum: Java Oct 21st, 2008 |
| Replies: 2 Views: 383 I would recommend the fifth edition of Java in a Nutshell (http://www.amazon.com/Java-Nutshell-5th-David-Flanagan/dp/0596007736/ref=sr_1_3?ie=UTF8&s=books&qid=1224622812&sr=1-3) more than the fourth. |
Forum: Java Oct 20th, 2008 |
| Replies: 4 Views: 491 Have you done any programs before this one? You need to declare main() as
public static void main(String[] args){
}
You never ended your Inventory class, it needs its corresponding... |
Forum: Java Oct 19th, 2008 |
| Replies: 4 Views: 640 What you could have done is marked the thread as solved, that way everyone would know it was solved and would not read the whole thing. Or, if you really wanted to be helpful you could have put the... |
Forum: Java Oct 14th, 2008 |
| Replies: 8 Views: 628 I would suggest reading this (http://java.sun.com/docs/books/tutorial/rmi/index.html) tutorial and maybe do a little more searching if you still don't understand it. If you don't understand it after... |
Forum: Java Oct 11th, 2008 |
| Replies: 2 Views: 1,029 The error is pretty self explanatory. You never gave the variables a value.
float num11, num22;That creates them but it does not initialize them with a value. If you give them a starting value,... |
Forum: DaniWeb Community Feedback Sep 29th, 2008 |
| Replies: 2 Views: 1,080 If you post your questions in the correct forum, without using chat room language, sure :) People will try to answer your questions and help you. |
Forum: Geeks' Lounge Sep 3rd, 2008 |
| Replies: 13 Views: 1,274 Some people should learn how periods work. |
Forum: Geeks' Lounge Aug 31st, 2008 |
| Replies: 55 Views: 4,747 >>>Why should we believe you? - John A
:) This is good rep on a rep comment. |
Forum: DaniWeb Community Feedback Aug 25th, 2008 |
| Replies: 20 Views: 2,844 Suppose a really great programmer or someone who knows XP and hardware inside and out, or someone like crunchie who is a genius when it comes to virus removal, joins Daniwed, and they are forced to... |
Forum: Java Aug 23rd, 2008 |
| Replies: 1 Views: 642 Show some effort by posting your code so we can see what you have done. Do what the question asks, learn how to write and read files by searching for tutorials. Google is your friend. |
Forum: Post your Resume Aug 22nd, 2008 |
| Replies: 4 Views: 665 It was in the wrong forum, you self-advertised and you used ppl instead of people which violates no "chatroom language". Read the rules. |
Forum: DaniWeb Community Feedback Aug 20th, 2008 |
| Replies: 24 Views: 2,545 Good, that is the first step, only eleven more to go ;) |
Forum: Java Aug 19th, 2008 |
| Replies: 1 Views: 513 1 second Google search
http://www.javaworld.com/javaworld/jw-08-1996/jw-08-gc.html
http://java.sun.com/docs/books/jvms/first_edition/html/Overview.doc.html (Scroll down to find the paragraphs... |