Java JComboBox Help.
Posted: Fri Apr 24, 2009 7:34 pm
I'm working on an applet something that works like this flash http://www.runehq.com/calculators/rs2/c ... me=Agility
The part that I'm having a hard time on is the JComboBoxes and how to create them with all the changing values.
Here is my applet that I have so far (Far from done)

When you select on the top ComboBox it should load different ones in the second field. If everything works right the third one will get passed the correct value to show values there.
Here is my code that is causing the problem
The right methods are getting called, it's just how I check the values of the ComboBoxes. If you want to view the whole source code you can download it here:
http://martyj.comuv.com/GUI.java
I'd really appreciate some help. Even if you don't know java you could give your ideas on it. Write it in pseudo code if you must :p.
Thanks
Marty
The part that I'm having a hard time on is the JComboBoxes and how to create them with all the changing values.
Here is my applet that I have so far (Far from done)

When you select on the top ComboBox it should load different ones in the second field. If everything works right the third one will get passed the correct value to show values there.
Here is my code that is causing the problem
Code: Select all
public void actionPerformed(ActionEvent e) {
//This whole method needs redone.
Object source = e.getSource();
if(source.equals(combo)){
// Changes the Calculator
calc = (String)combo.getSelectedItem();
calc2 = (String)page.getItemAt(1);
CalcBuild(calc, calc2);
}
if(source.equals(page)){
calc2 = (String)page.getSelectedItem();
CalcBuild(calc,calc2);
}
else if(source.equals(search)){
// Other code not pertaining to this
}
else{
JOptionPane.showMessageDialog(this, "Error Code: GUI490", "Error, please enter a username.", JOptionPane.INFORMATION_MESSAGE);
}
}
}
http://martyj.comuv.com/GUI.java
I'd really appreciate some help. Even if you don't know java you could give your ideas on it. Write it in pseudo code if you must :p.
Thanks
Marty