Código Java:
Ver original
int fila = tblDetalle.getSelectedRow(); if (fila >= 0) { int []filasselec = tblDetalle.getSelectedRows(); for (int i=0; i<filasselec.length;i++) { modelo.removeRow(filasselec.length); VentaLocalGUI.txtSubtotal.setText(""); VentaLocalGUI.txtTotal.setText(""); VentaLocalGUI.txtValorenLetras.setText(""); VentaLocalGUI.txtCantidad.requestFocus(); } } else { JOptionPane.showMessageDialog(null, "No Selecciono Ninguna Fila", "Aviso", JOptionPane.ERROR_MESSAGE); } }