I have already a dialog with Static text, IDC_STATICTIME, I have created a variable using CString m_sTime and with this

COleDateTime m_strTime= COleDateTime::GetCurrentTime();
m_sTime = m_strTime.Format("%b %d %Y);

Question: How can i display it in a certain portion in the dialog? So, the IDC_STATICTIME, i've used should display:

Current Date: the date(say May 23 2005)

I have put the code in DoDataExchange(CDataExchange* pDX)
with DDX_Text(pDX, IDC_STATICTIME, m_sTime); and it display as it should be but any other option without using DDX_text to display it?