Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void tablaMouseClicked(java.awt.event.MouseEvent evt) {
- if (accion.equals("")) {
- String vid = tabla.getValueAt(tabla.getSelectedRow(), 0).toString();
- String vnombre1 = tabla.getValueAt(tabla.getSelectedRow(), 1).toString();
- String vnombre2 = tabla.getValueAt(tabla.getSelectedRow(), 2).toString();
- String vnombre3 = tabla.getValueAt(tabla.getSelectedRow(), 3).toString();
- String vapellido1 = tabla.getValueAt(tabla.getSelectedRow(), 4).toString();
- String vapellido2 = tabla.getValueAt(tabla.getSelectedRow(), 5).toString();
- String vsexo = tabla.getValueAt(tabla.getSelectedRow(), 6).toString();
- String vestadocivil = tabla.getValueAt(tabla.getSelectedRow(), 7).toString();
- String vtel1 = tabla.getValueAt(tabla.getSelectedRow(), 8).toString();
- String vtel2 = tabla.getValueAt(tabla.getSelectedRow(), 9).toString();
- String vcorreo = tabla.getValueAt(tabla.getSelectedRow(), 10).toString();
- String vidcargo = tabla.getValueAt(tabla.getSelectedRow(), 11).toString();
- String vidrol = tabla.getValueAt(tabla.getSelectedRow(), 12).toString();
- String vidpais = tabla.getValueAt(tabla.getSelectedRow(), 13).toString();
- String vidciudad = tabla.getValueAt(tabla.getSelectedRow(), 14).toString();
- String vidsubcargo = tabla.getValueAt(tabla.getSelectedRow(), 15).toString();
- String vci = tabla.getValueAt(tabla.getSelectedRow(), 16).toString();
- String vdireccion = tabla.getValueAt(tabla.getSelectedRow(), 17).toString();
- txtID.setText(vid);
- txtNombre1.setText(vnombre1);
- txtNombre2.setText(vnombre2);
- txtNombre3.setText(vnombre3);
- txtApellido1.setText(vapellido1);
- txtApellido2.setText(vapellido2);
- txtIDsexo.setText(vsexo);
- txtIDEstadoCivil.setText(vestadocivil);
- txtTelefono1.setText(vtel1);
- txtTelefono2.setText(vtel2);
- txtCorreo.setText(vcorreo);
- txtIDcargo.setText(vidcargo);
- txtIDrol.setText(vidrol);
- txtIDpais.setText(vidpais);
- txtIDciudad.setText(vidciudad);
- txtIDsubcargo.setText(vidsubcargo);
- txtCi.setText(vci);
- txtDireccion.setText(vdireccion);
- recuperar_cargo();
- recuperar_rol();
- recuperar_pais();
- recuperar_ciudad();
- recuperar_subcargo();
- recuperar_sexo();
- recuperar_estadocivil();
- btnModificar.setEnabled(true);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement