COleDateTime m_dt;
m_ctrlDateTime.GetTime(m_dt);
double d = dt.m_dt;
System::DateTime datum;
datum.FromOADate(d);
I am trying to get date and time from a DateTimePicker control and to later on set the value of datum to that value. Datum is System::DateTime (C#). But datum is this "1/1/1 00:00:00" What's the problem?
The problem is the very last line:
DateTime::FromOADate
is actually a static member function that returns aDateTime
object. In C++ terms, you can think of it like a named constructor.It does not initialize
datum
like a normal member function would. What's confusing you is the fact that C++ allows you to call static members using an instance of the object. In C#, that would not be possible, and you would have gotten a compile-time error alerting you to the problem.Write the code like this, and you will be fine:
You could also do the following (but it would be similarly confusing):