tags:

views:

34

answers:

2

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?

+1  A: 

Use COleDateTime::ParseDateTime(CString) and then convert it to CTime.

dwo
A: 

Check out the example mentioned in this MSDN doc page: COleDateTime::ParseDateTime

anand.arumug