In smart device MFC application:
I have successfully converted CTime
to CString
. Now I want to convert it back, CString
to CTime
.
How can I do that?
In smart device MFC application:
I have successfully converted CTime
to CString
. Now I want to convert it back, CString
to CTime
.
How can I do that?
Use
COleDateTime::ParseDateTime(CString)
and then convert it to CTime.Check out the example mentioned in this MSDN doc page: COleDateTime::ParseDateTime