Forum: Java May 26th, 2004 |
| Replies: 5 Views: 14,362 Review the following
CLASS I (Partical)
.
.
.
public String climateDataOut[];
try |
Forum: Java May 26th, 2004 |
| Replies: 5 Views: 14,362 you need to change your climaticData method to return String[] instead of void. Add return(climateDataOut); at the end of the method and then change your calling class to catch the String[]. |
Forum: PHP Apr 20th, 2004 |
| Replies: 7 Views: 3,976 Wild Guess: Maybe those routines are disabled in your php.ini file. |
Forum: OS X Apr 9th, 2004 |
| Replies: 1 Views: 4,038 You don't want to try to open the drive files. To open the virtual pc you want to click the icon with just the name of the virtual pc you want to use. In $HOME/Documents I have a folder called... |
Forum: Java Apr 8th, 2004 |
| Replies: 12 Views: 4,944 another thing ... quick paste into eclipse and it suggests that you cast "this" with (ActionListener) and (ItemListener) .... Also I think you may have meant addItemListener on the second food.add*... |
Forum: Java Apr 8th, 2004 |
| Replies: 12 Views: 4,944 First thing I see is that you missed semicolons on the following lines:
order.addActionListener(this)
food.addActionListener(this) |