Forum: Java 1 Day Ago |
| Replies: 1 Views: 95 sourceforge.net plenty ideas to go through |
Forum: Java 5 Days Ago |
| Replies: 9 Views: 232 Forum rule is We only give homework help to those who show effort (http://www.daniweb.com/forums/announcement9-2.html).
What is the best way to learn? By practicing and making mistakes from which... |
Forum: Java Oct 18th, 2009 |
| Replies: 13 Views: 855 1. Full sentence English is expected when you post on this forum, it is part of the rules which I'm sure you already read
2. Sorry I already provided valuable tips what may get you better marks,... |
Forum: Java Oct 16th, 2009 |
| Replies: 13 Views: 855 Any closer specification of interest?
desktop development
web development
mobile development
interest in any of the frameworks
interest in any of other technologies supported by java
... |
Forum: Java Oct 4th, 2009 |
| Replies: 3 Views: 658 I have no idea what I'm looking for as I do not see any use of outFile.print(); or PrintWriter outFile = new PrintWriter(outfile);
However what I see here is intentionally another problem
... |
Forum: Java Oct 3rd, 2009 |
| Replies: 0 Views: 1,924 Here is simple example of static image to be displayed as logo on the start-up/splash screen.
This can be improved by creating animation out of series of images or use of flash file through Project... |
Forum: Java May 1st, 2009 |
| Replies: 10 Views: 851 You have general flaw in the logic. The values collected by JOptionPane will never get out of your while loop. To add the values to array you need to add each new grade to array inside while loop.... |
Forum: Java Apr 8th, 2009 |
| Replies: 19 Views: 786 There is only one array involved that you need to use. Video class represent an object that has to be stored in array.
I'm not gone do Video class for you as that is simple and judging by assignment... |
Forum: Java Apr 1st, 2009 |
| Replies: 10 Views: 631 Not possible. I can help you fix errors if you get any, but you need to do your application on your own. |
Forum: Java Mar 23rd, 2009 |
| Replies: 17 Views: 1,186 You can do it in MIDlet, but I will say keep it in another class as that way your code would be easier to manage. Scrolling down hundred of lines is unpleasant sport |
Forum: Java Mar 21st, 2009 |
| Replies: 17 Views: 1,186 You forgot to give it an instance to which the method should be called
Main kpge = new Main();
KeyPair kp = kpge.generateKeyPair(999);
PublicKey pubKey = kp.getPublic();... |
Forum: Java Mar 21st, 2009 |
| Replies: 7 Views: 796 I played around with your code and there is strange behaviour that I'm little baffled. I think that maybe somebody with depth knowledge of Java would be able to explain.
From your short code it is... |
Forum: Java Mar 6th, 2009 |
| Replies: 2 Views: 2,519 I do not want to sound rude, but you sound as classic example of drag&drop programmer that just got stack with his project because he is simply not able modify that crucial section of code need it.
... |
Forum: Java Mar 1st, 2009 |
| Replies: 12 Views: 666 Before anybody else step into this I will said don't do it.
IMtheBESTatJAVA blaming this on the community will not work. You are fully aware of the rule We only give homework help to those who show... |
Forum: Java Feb 27th, 2009 |
| Replies: 12 Views: 666 Homework by may search (http://www.paloverde.org/changcl/csIII/ICT/AB24/Worksheet%20AB24.1%20-%20Recursive%20Arrays.doc), from Palo Verde High School (home page (http://www.paloverde.org/)) and... |
Forum: Java Jan 21st, 2009 |
| Replies: 16 Views: 773 You two do not really know where to stop teasing. Why do you constantly mock all new comers? Don't you think that one person saying "No, we will not do it for.." is clear message that if other side... |
Forum: Java Jan 10th, 2009 |
| Replies: 2 Views: 228 There are two ways how to get about this problem
1. One general listener for associated components like now in your case ItemListern
public void itemStateChanged(ItemEvent e) {
... |
Forum: Java Jan 4th, 2009 |
| Replies: 5 Views: 764 LG developer section http://developer.lgmobile.com/ |
Forum: Java Dec 28th, 2008 |
| Replies: 10 Views: 1,039 This works fine.
import java.io.File;
import java.io.IOException;
/**
* Delete a file from within Java
*
* @author Ian F. Darwin, http://www.darwinsys.com/
* @version $Id:... |
Forum: Java Dec 22nd, 2008 |
| Replies: 15 Views: 972 Test class as suggested
public class Test
{
private String question;
private String optionA;
private String optionB;
private String optionC;
private String answer;
public Test(){} |
Forum: Java Dec 5th, 2008 |
| Replies: 9 Views: 635 Guys, lately many of you become more jabbing, pushing and aggressive in the responds to most of the questions asked on the forum specially if the request
list homework in copy&paste style
no... |
Forum: Java Nov 13th, 2008 |
| Replies: 25 Views: 1,553 There is number of programming languages available for mobile development
C# under .NET Compact Framework for Windows CE - easy to learn, fast development, large number of devices available however... |
Forum: Java Oct 11th, 2008 |
| Replies: 17 Views: 2,300 Your own arrogance is making difficult to deal with this.
As previously stated you should search forum for suggestions as many made and discussed, we are not "IDEA FACTORY" to come up with... |
Forum: Java Aug 25th, 2008 |
| Replies: 17 Views: 2,287 Right click on project folder -> Properties -> in Category select Application Descriptor -> on right side of the window click on the MIDlets. Here you need to point NetBeans to MIDlet in your... |
Forum: Java Jul 13th, 2008 |
| Replies: 36 Views: 27,965 For these of you who would like to learn more or start with Java Microedition - JME (also known as J2ME) here are few tips
What you need for development (download links)
Your favourite IDE... |
Forum: Java May 29th, 2008 |
| Replies: 3 Views: 702 By downloading appropriate JAR file and adding to your project libraries. The following code snippet (http://www.daniweb.com/code/snippet303.html) show some example of Java mailing plus has some... |
Forum: Java May 15th, 2008 |
| Replies: 14 Views: 1,265 If you paid more attention in your classes you would know that Applet DO NOT USE "main" class call. For more info follow Sun Applet tutorials here... |
Forum: Java May 11th, 2008 |
| Replies: 2 Views: 1,501 Layouts are your friends
add(topPanel, BorderLayout.NORTH);
You should have go on these tutorials (http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html) |
Forum: Java Mar 2nd, 2008 |
| Replies: 5 Views: 995 Declare JRadioButtonMenuItem as follow
String[] difLevel = {"Easy", "Normal", Hard"};
JRadioButtonMenuItem[] difficulty;
Initialization somewhere in code with adding ActionListener
difficulty[]... |
Forum: Java Jan 4th, 2008 |
| Replies: 15 Views: 1,538 Do not worry so far sara_84 did not reply to anything originaly posted in first or second post. I would say it is pass deadline.
Anyone want to help me with coursework?. Joking:P |
Forum: Java Dec 31st, 2007 |
| Replies: 13 Views: 4,214 Read this (http://www.excelsior-usa.com/articles/java-to-exe.html), it holds some interesting info |
Forum: Java Nov 22nd, 2007 |
| Replies: 3 Views: 1,475 There is javax.imageio (http://java.sun.com/javase/6/docs/api/javax/imageio/package-summary.html) as part of Java that you can use. However not always suficient for the task. You may want to consider... |
Forum: Java Oct 12th, 2007 |
| Replies: 31 Views: 3,462 No need for it, if you will try that program you would understand what he is about....
GridLayout is not best solution for the layout you try to do. You should consider BoxLayout... |
Forum: Java Sep 9th, 2007 |
| Replies: 4 Views: 844 Same mistake in both cases
you store user input into Department but compared variable is dept, I think you forgot to parse String Department to integer dept so whole time you run check on null... |
Forum: Java Sep 5th, 2007 |
| Replies: 1 Views: 665 No, you have to first call currently selected item
String selectedOption = (String) jComboBoxMonth.getSelectedItem()
and then you can compare it as you did it
if (selectedOption.equals("Month") |
Forum: Java Aug 2nd, 2007 |
| Replies: 34 Views: 5,244 1. Is there any reason for currCD = 0? Do you use it for something?
2. CdwArtist cdEntry = (CdwArtist)listModel.elementAt(i); will retrive data about CD on position "i" of your list.
What is... |
Forum: Java Aug 2nd, 2007 |
| Replies: 4 Views: 1,038 ASAP that sounds bad, are we kind of monkeys working for you?
Search daniweb there are already posts about messengers.
Check sourceforge (http://sourceforge.net/index.php) for open source project... |
Forum: Java Jul 30th, 2007 |
| Replies: 24 Views: 3,707 Can you please provide remining classes for this application. So far I do no see any problems here so copaling whole thing would be better |
Forum: Java Jul 27th, 2007 |
| Replies: 59 Views: 5,842 JTextArea jta = new JTextArea();
jta.append("CD Description");
//Or you can do
jta.setText("CD Description");
Preferences up to you just look up API... |
Forum: Java Jul 27th, 2007 |
| Replies: 2 Views: 2,047 In command prompt type java -version and return can be something like this
java version "1.6.0"
Java(TM) SE Runtime Environment (build 1.6.0-b105)
Java HotSpot(TM) Client VM (build 1.6.0-b105,... |