Como enviar un jdatechooser de una tabla en un formulario para editarlo!!!
Publicado por dayver (3 intervenciones) el 14/03/2017 15:33:41
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
String tipo="",folio="",fecha="",dias="",periodo="",recibio="",motivo="";
int fila = tbjustificantes.getSelectedRow();
try {
if(fila==-1)
{
JOptionPane.showMessageDialog(null, "No ha seleccionado ningun dato");
}
else
{
tipo = (String)tbjustificantes.getValueAt(fila, 0);
folio = (String)tbjustificantes.getValueAt(fila, 1);
fecha = (String)tbjustificantes.getValueAt(fila, 2);
dias = (String)tbjustificantes.getValueAt(fila, 3);
periodo = (String)tbjustificantes.getValueAt(fila, 4);
recibio = (String)tbjustificantes.getValueAt(fila, 5);
motivo = (String)tbjustificantes.getValueAt(fila, 6);
Registro_Justificante.txttipo.setDisabledTextColor(Color.blue);
Registro_Justificante.txttipo.setText(tipo);
Registro_Justificante.txtfolio.setDisabledTextColor(Color.blue);
Registro_Justificante.txtfolio.setText(folio);
//Registro_Justificante.f_recibido.setDisabledTextColor(Color.blue);
Registro_Justificante.f_recibido.setDateFormatString(fecha);// ESTE ES ERROR DE LAS FECHAS AYUDA
Registro_Justificante.txtdias.setDisabledTextColor(Color.blue);
Registro_Justificante.txtdias.setText(recibio);
Registro_Justificante.txtperiodo.setDisabledTextColor(Color.blue);
Registro_Justificante.txtperiodo.setText(dias);
Registro_Justificante.txtrecibio.setDisabledTextColor(Color.blue);
Registro_Justificante.txtrecibio.setText(periodo);
Registro_Justificante.txtmotivo.setDisabledTextColor(Color.blue);
Registro_Justificante.txtmotivo.setText(recibio);
//Registro_Justificante.cmdeditar.setVisible(true);
this.dispose();
}
} catch (Exception e) {
}
Valora esta pregunta
0