hello
Is there any way of getting the selected date in a CDateTimeCtrl in a CString or char* or anyting?
thx in advance
Is there any way of getting the selected date in a CDateTimeCtrl in a CString or char* or anyting?
Here is one way ..
CTime time;
if (GDT_VALID == DateTimeCtrl.GetTime(time))
{
CString strDate = time.Format("%d.%m.%Y");
}
See the CTime::Format(...) for more information on the the formatting options
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.