02/06/2016, 08:53
|
| | Fecha de Ingreso: abril-2016 Ubicación: Acayucan, Veracruz
Mensajes: 10
Antigüedad: 8 años, 9 meses Puntos: 0 | |
Respuesta: Los datos de un jtable no se guardan en la base de datos ok. esta bien, esta es el metodo void de la resta.
void restaa(){
int row = tbAbono.getSelectedRow() ;
if(row!= -1){
Object Abo = tbAbono.getValueAt(row, 5);
Object Res = tbAbono.getValueAt(row, 6);
int a = Integer.parseInt(Abo.toString());
int b = Integer.parseInt(Res.toString());
tbAbono.setValueAt(b-a, row, 6);
}
} |