26/02/2008, 12:45
|
| | | Fecha de Ingreso: enero-2008 Ubicación: Guatemala
Mensajes: 1.817
Antigüedad: 17 años Puntos: 260 | |
Re: Listener jcombobox
Código:
public class ComboBoxDemo ... implements ActionListener {
. . .
petList.addActionListener(this) {
. . .
public void actionPerformed(ActionEvent e) {
JComboBox cb = (JComboBox)e.getSource();
String petName = (String)cb.getSelectedItem();
updateLabel(petName);
}
. . .
}
Código:
private void jMp3ActionPerformedActionPerformed (java.awt.event.ActionEvent e) {
JComboBox cb = (JComboBox) e.getSource();
izena =(String)cb.getSelectedItem();
}
|