Muy bien, pero sabes donde estuvo mi error? en una simple A.
puse ActionPerformed y era actionPerformed, tu si lo escribiste bien...
...
Aqui te dejo mi codiguito terminado...
Código:
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*; //Incluida para que maneje eventos
public class COMPONENTES extends Applet implements ActionListener
{
public Button bSumar;
public TextField txtEnt1, txtEnt2;
public Label lblEnt1, lblEnt2;
public double Total, Ope1, Ope2;
public void init(){
lblEnt1 = new Label("Primer Numero: ");
txtEnt1 = new TextField(10);
lblEnt2 = new Label("Segundo Numero: ");
txtEnt2 = new TextField(10);
bSumar = new Button("Sumar");
add(lblEnt1);
add(txtEnt1);
add(lblEnt2);
add(txtEnt2);
add(bSumar);
bSumar.addActionListener(this);
}
public void actionPerformed(ActionEvent ev){
try{
Ope1 = Double.parseDouble(txtEnt1.getText());
Ope2 = Double.parseDouble(txtEnt2.getText());
Total = Ope1 + Ope2;
showStatus("Resultado: -> "+ Double.toString(Total));
}
catch(Exception e){
showStatus("No se puedo realizar la suma...");
}
}
}