gargamel
September 4th, 1999, 11:13 AM
I have a simple RecordView which has several DateTimePicker boxes in it. When I link the DateTimePicker boxes with member variables in my RecordSet, ClassWizard adds the following to the DoDataExchange method in my View:
DDX_FieldDateTimeCtrl(pDX, IDC_REP_DATE, m_pSet->m_DATE_RPT, m_pSet);
DDX_FieldDateTimeCtrl(pDX, IDC_SATIS_DATE, m_pSet->m_DATE_PAID, m_pSet);
When I try to compile/build, it says:
error C2065: 'DDX_FieldDateTimeCtrl' : undeclared identifier
What might I be doing wrong?
John
DDX_FieldDateTimeCtrl(pDX, IDC_REP_DATE, m_pSet->m_DATE_RPT, m_pSet);
DDX_FieldDateTimeCtrl(pDX, IDC_SATIS_DATE, m_pSet->m_DATE_PAID, m_pSet);
When I try to compile/build, it says:
error C2065: 'DDX_FieldDateTimeCtrl' : undeclared identifier
What might I be doing wrong?
John