
13/04/2010, 08:28
|
 | | | Fecha de Ingreso: octubre-2004 Ubicación: Monterrey - México
Mensajes: 875
Antigüedad: 20 años, 5 meses Puntos: 8 | |
Respuesta: DATETIMEPICKER y campo DATETIME Hola....
Intenta algunas de estas opciones:
DateTime dtA;
dtA = Convert.ToDateTime(dateTimePicker1.Value);
string dtB;
dtB = dateTimePicker1.Value.Year + "-" + dateTimePicker1.Value.Month + "-" + dateTimePicker1.Value.Day;
Saludos. |