Java - Como enviar un jdatechooser de una tabla en un formulario para editarlo!!!

 
Vista:
sin imagen de perfil

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
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

Como enviar un jdatechooser de una tabla en un formulario para editarlo!!!

Publicado por Renzo (232 intervenciones) el 14/03/2017 17:20:01
Hola
copia el detalle del error que tienes. por lo que puedo ver el problema esta acá: setDateFormatString(fecha)

el método recibe un tipo de dato definido y tu le estas intentando setear una cadena (fecha).

Saludos

Renzo
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil

Como enviar un jdatechooser de una tabla en un formulario para editarlo!!!

Publicado por dayver (3 intervenciones) el 21/03/2017 15:39:59
HOLA BUENAS TENGAS AMIGO!!! AMIGO LO QUE PASA ES QUE LA FECHA QUE TENGO EN UNA TABLA LO QUIERO ENVIAR A UN FORMULARIO PERO NO ME LO PASA AL JDATECHOOSER Y PUES LO QUIERO OBTENER CON GETDATE() Y ME MARCA ERROR
Y YA LO INTENTE CON GETCALENDAR() Y TAMBIEN CON:

Registro_Justificante.f_recibido.setDateFormatString(fecha);// PERO NO PUEDO OBTENER LA FECHA Y MANDARLO AL JDATE CHOO SER PARA QUE PUEDA MODIFICARSE
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

Como enviar un jdatechooser de una tabla en un formulario para editarlo!!!

Publicado por Renzo (232 intervenciones) el 21/03/2017 18:37:53
Para setear el valor de un date chooser debes usar algo así:



Calendar cal = Calendar.getInstance();
cal.setTime(date);
jDateChooser.setSelectedDate(cal);


Saludos

Renzo
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar