21/07/2009, 16:25
|
| | Fecha de Ingreso: febrero-2007
Mensajes: 141
Antigüedad: 17 años, 9 meses Puntos: 1 | |
Respuesta: Suma y multiplicacion entre filas y columnas No entiendo muy bien.. yo tengo este codigo pero no funciona bien..
String Precio = "";
String Cantidad = "";
String Unit = "";
int Nvalor = 0;
int Nvalor2;
int Nvalor3;
for (int i = jtbventas.getRowCount() - 1; i >= 0; i--)
Precio = String.valueOf(jtbventas.getValueAt(i, 3));
Cantidad = String.valueOf(jtbventas.getValueAt(i, 0));
Unit = String.valueOf(jtbventas.getValueAt(i, 3));
Nvalor2 = Integer.valueOf(Cantidad);
Nvalor3 = Integer.valueOf(Unit);
Nvalor = Integer.parseInt(Precio) * Nvalor2 + Nvalor3;
jtbpreciofin.setValueAt(Nvalor, 0, 0);
-----
Se que esta hecho muy mal, ahi lo que hace es sumar el precio por si mismo, y dps multiplicarlo por la cantidad..
Pero aparte, solamente lo hace en la primera fila.. yo necesitaria que lo haga en TODAS LAS FILAS.
Porfavor ayuda.! |