t> The string returned by wxDateTime::Format() is exactly right for me. I
t> would simply like the seconds (and milliseconds, which by default
t> isn't displayed) to not be displayed in the string. What format would
t> i use to achieve that?
Either "%x %H:%M" or "%x %I:%M %p". There is no way to get the "time
without the seconds in the current locale" AFAIK.
Regards,
VZ
--
TT-Solutions: wxWidgets consultancy and technical support
http://www.tt-solutions.com/
Or you just use the standard wxDateTime::Format() and then cut off the
seconds, provided the returned string looks always the same.
bye Fabi