1,522 Posted Topics
Re: I liked the video. The music very interesting. I wish I could understand what they were saying. :-/ | |
Re: Post any work you have done on it and ask specific questions regarding your code. We will not do your work for you. Read [URL="http://www.daniweb.com/forums/announcement9-2.html"]this[/URL]. | |
| |
Re: This website is not only for coursework, it is for helping people. If you have questions you may ask them on the forum. Read the rules and announcements to find out what is expected before you post. For instance your email link will probably be taken out by a mod … | |
Re: The point of the first part of her post was to say that learning something new does take work and effort. I'm pretty sure she does not think she is perfect. | |
Re: The Google ads were a little annoying but disabling them fixes that. Otherwise I have not noticed any slowdowns. | |
Re: Welcome! What kind of books do you like to read? Who is your favorite author? | |
Re: You already created a thread with the same question. Please only create one thread for a single question. Read the [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL] and [URL="http://www.daniweb.com/forums/announcement9-2.html"]annoucnemnts[/URL]to see what is expected before posting. | |
Re: I am pretty sure there needs to be a space between "sfc" and the "/" | |
![]() | |
Re: Welcome to Daniweb! I do not know if you read all the rules yet but one of them asks you to mark your thread as solved when it has been, like this one. That way we don't read a whole thread (thankfully this one was short) and realize the problem … | |
Re: This thread is two years old and was marked solved. Please do not bring back these dead threads. | |
Re: The HIV virus evolves all the time to try and survive in its host. Humans share almost 98% of our DNA with chimps. How close our arm bones look to that of a mouse. Animals that live on completely different continents and are completely different species look very similar. How … | |
Re: It might help if you added brackets to the first if statement. (In red) [CODE]Action listener - if(event.getSource() == cmdSaveSettings) [COLOR="Red"]{[/COLOR] if(txtPlayerOneName.getText().equals(emptyText)) { JOptionPane.showMessageDialog(null, "alert", "Please enter player one's name", JOptionPane.ERROR_MESSAGE); } [COLOR="Red"]}[/COLOR][/CODE] | |
![]() | |
Re: [QUOTE=ithelp;567915]Yes as javaaddict suggested create a class may be name it Travel which has the following fields [code=java] class Travel { String destination; }; [/code][/QUOTE] Without the semi-colon at the end of he brackets. | |
Re: I think what you are looking for is double buffering. I have used the following code before in my applets where I used a listener. I hope it works for you. [CODE] public void update(Graphics g) { Graphics offgc; Image offscreen = null; Dimension d = size(); offscreen = createImage(d.width, … | |
The End.