Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/05/2013, 10:36
rahe_meph
 
Fecha de Ingreso: marzo-2013
Mensajes: 26
Antigüedad: 11 años, 9 meses
Puntos: 0
obtener suma automaticamente

Hola a todos, quisiera saber si es posible obtener, en este caso,despues de ingresar 2 valores en 2 jtextfield, la suma automaticamente en otro jtextfield, es decir, sin presionar ningun boton.Tengo este metodo que hace el trabajo,pero mediante un boton..
Cita:
void cargatotal(){
String subtotal=txtsubtotal.getText();
String iva=txtiva.getText();
int n1=Integer.parseInt(subtotal);
int n2=Integer.parseInt(iva);
int suma=n1+n2;
String total=String.valueOf(suma);
txttotal.setText(total);
}
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
cargatotal();
}
De antemano muchas gracias.