Página 1 de 1
TDatePicker dValue problem
Publicado: Dom Mar 30, 2014 10:40 pm
por horvathg
The dValue property of the TDatePicker control allways returns for me a DateTime value e.g. 03-30-2014 19:14:18.663.
Setting different values in the nFormatType does has no effect.
How can I get only the date part of the dValue?
TDatePicker dValue problem
Publicado: Lun Mar 31, 2014 10:07 am
por ignacio
horvathg escribió el dom, 30 marzo 2014 22:40The dValue property of the TDatePicker control allways returns for me a DateTime value e.g. 03-30-2014 19:14:18.663.
Setting different values in the nFormatType does has no effect.
How can I get only the date part of the dValue?
With Harbour:
Hb_TtoD( tDateTime )
With xHarbour:
TtoD( tDateTime )
Regards,
TDatePicker dValue problem
Publicado: Lun Mar 31, 2014 9:25 pm
por horvathg
Thanks, Ignacio
Hb_TtoD( tDateTime ) solved my problem.