1,522 Posted Topics
Re: What question? That was your first post so you posted no question before that. | |
Re: [B]Crunchie[/B] Crunchie is the person that can fix almost any virus, spyware, or other nasty problem. He has over 6000 posts is the Virus, Spyware and other nasties forum. He has almost limitless patience when it comes to computer illiteracy and users problems. If you have a virus related problem … | |
Re: 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 confusing for people who aren't regulars. Why did you implement it in the … ![]() | |
Re: [QUOTE=m_sam6;826398]hi how i can do this by StringTokenizer Is there a more easy efficient method?[/QUOTE] Easy is relative, what might be easier for some could be really hard for you. Google StringTokenizer examples, read the API and then start writing some code. When you have shown some effort come back, … | |
Re: [QUOTE=cwarn23;1053948]So what is your theory?[/QUOTE] That size defeats us. | |
Re: This is my favorite chili recipe, it is authentic chili because there are no beans. 3 pounds stew meat (beef, pork, and/or lamb) 2 teaspoons peanut oil 1 1/2 teaspoons kosher salt 1 (12-ounce) bottle of beer, preferably a medium ale 1 (16-ounce) container salsa 30 tortilla chips 2 chipotle … | |
Re: No. Do your own work. | |
Re: [QUOTE=jbennet;1055046]Yeah i had an infinate loop in my java program i wrote which which screwed up and wrote a text file into every folder on my filesystem. Fun times.[/QUOTE] hahaha | |
Re: [quote=william hemsworth;1052699]the only people i see regularly in the list are: [attach]12639[/attach] [/quote] I see myself in there!!! ;) | |
Re: [QUOTE=Ecliptical210;1054681] Sorry about all the commenting in the code, but I find it helps a lot.[/quote] A lot of commenting is a good thing, its a great habit to have, because it helps others read your code and makes it more organized when you have very large projects, comment away. … | |
Re: [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give help to those that show effort[/URL] | |
Re: Please wrap your code in code tags, simply highlight your code and click the code button at the top of the reply box. From the unformatted code it appears you are trying to declare a method within your constructor, you might have delimiter, aka bracks... { }, problems as well. … | |
Re: Yes you can do this as a console program. An idea would be to have a HashMap, where the key's are each letter from the alphabet, and the corresponding value is the String you want to replace it with. You could read in a text file to populate the HashMap … | |
Re: Alright, lets go through what you need to output step by step. You want to output the original price of the item, which works, although I would change [code]public static void calculatePrice(double amount, int quantity)[/code] to [code]public static void calculatePrice(double [COLOR="Red"]price[/COLOR], int quantity)[/code]This way it is easier to follow all … | |
Re: Being familiar with the Java API, available online [URL="http://java.sun.com/javase/6/docs/api/"]here[/URL], is imperative if you plan to program any further in Java. Another fantastic resource is [URL="http://www.javadocexamples.com"]http://www.javadocexamples.com[/URL]. This has most of the Java API with example code. For instance, if you had looked through that site, you would have found the Random … | |
Re: [QUOTE=serkan sendur;825196]i want to see the names for the poster titles, the ones starting from newbie to ... . is there any complete list of them?[/QUOTE] This question has been asked so many times before. There is no list because Dani wants it to be a surprise, of sorts. [QUOTE=serkan … | |
Re: Do you have to write this method yourself? If not, I'm 99% sure its not part of the standard API. If you just have to use the method some common sense is helpful. Method's are named so that you don't really need to know how they work to use them. … | |
Re: [QUOTE=Farfie;1051882]I should also note that no variables are allowed besides the two that the user inputs as the integer, and digit to be checked for[/QUOTE] I think this requires the use of at least one more variable. I would read the integer in as a string, create an array of … | |
| |
Re: Read the Java tutorial on applets, [URL="http://java.sun.com/docs/books/tutorial/deployment/applet/getStarted.html"]here[/URL]. You are missing a key method every applet needs. | |
Re: [QUOTE=freelancelote;989751]What do you mean by that? Is it some kind of joke I didn't get?[/QUOTE] That is the example for his problem. | |
Re: Welcome! I agree with all of them, go for it and yes it does make sense, a felon with a degree has a better chance than a felon without one. Good Luck! | |
Re: [QUOTE=William Hemsworth;1018600]Heh, I did the same thing, the first time it was williamhemswort[/QUOTE] Hehe, I remember when you were called that, I used to wonder if you had warts everywhere ;) | |
Re: The wheels on the bus go round and round, round and round, round and round... | |
Re: SNIP HAHAH!!! I always loved your way with words. I actually enjoy having you around, an oddball here or there is nice, plus you provide comic relief. | |
Re: It is easy to understand. You look at the top of the page for what topic you are looking for, hover your mouse over it, and then choose a sub-topic. To be a programmer you need to learn to figure somethings out by yourself, especially if they are in plain … | |
Re: 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 leaving a comment, an [B]anonymous[/B] voting system was put in place, that doesn't allow for comments … | |
Re: What are you having a problem with? You told us what your program is supposed to do, and that its not working, but you never told us exactly what part isn't working. | |
Re: [QUOTE=The Dude;1003105]I really like having the list of bases @ top of the page!! I can easily jump to another base w/o hassle!! Anyone else find this usefull??[/QUOTE] What are you talking about? | |
Re: 70 You are experiencing occasional or frequent problems because of the Internet. You should consider their full impact on your life. | |
Re: [QUOTE=mahgobb;989608]What kind of instrument do u play? [/QUOTE] Instruments of torture. | |
Re: Absolutely beautiful. I loved the old blind guy from New Orleans. | |
Re: [QUOTE=William Hemsworth;998102]You'll be back! :) [/QUOTE] That's what I expected of jwenting when he left. So far nothing. | |
Re: 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 the give rep link. Example below. | |
Re: Thank you for using code tags but next time can you try to post just the relevant portion of the code? If we need more we will ask for it. | |
Re: The caps are unnecessary, don't use them. Secondly, there is nothing wrong with the code, it works perfectly, what you have is a logic error. The problem is in your line [CODE]System.out.println(a);[/CODE] You need to either override Area's toString() method, which it inherits from Object, or you need to right … | |
Re: [QUOTE=majestic0110;993201]You need to add ItemListener to your combo-box. The sun tutorial is brilliant, look here : [URL="http://http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html"]http://http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html[/URL] I hope that helps! EDIT: lol James Cherrill, you just beat me to it! Same tutorial as well, great minds...[/QUOTE] Your link doesn't work, you have an extra http:// [URL="http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html"]Here[/URL] is a working … | |
Re: This thread is 3.5 years old. Please don't revive these old threads. Also read the rules before posting. | |
Re: [QUOTE=cscgal;988291]Implemented. :)[/QUOTE] Alright, what do I need to do to see it then. All I see is a distorted version of the # | |
Re: [URL="http://lmgtfy.com/?q=convert+SIS+to+jar"]Here[/URL] you go. | |
Re: [QUOTE=vegaseat;989444]Google is running on overload and only picks up important stuff?[/QUOTE] Then why would it pick up any of his posts? ;) Just kidding serkan. | |
Re: If you change the default number of posts per thread in your control panel you can view it as one page. This can be a temp fix for you while Dani is sick. |
The End.