这什么有关问题啊如何改,不明白

这什么问题啊,怎么改,不明白啊
error C2582: 'CEdit' : 'operator =' function is unavailable
error C2582: 'CEdit' : 'operator =' function is unavailable
error C2665: 'DDX_Text' : none of the 12 overloads can convert parameter 3 from type 'class CEdit'
error C2665: 'DDX_Text' : none of the 12 overloads can convert parameter 3 from type 'class CEdit'

------解决方案--------------------
你的m_DesPath和m_SrcPath现在肯定是定义成了CEdit类型了.
要么按4楼说的,把CEdit类型改成CString类型.
要么按5楼说的.
DDX_Text(pDX, IDC_DESPATH, m_DesPath);
DDX_Text(pDX, IDC_SRCPATH, m_SrcPath);
改成
DDX_Control(pDX, IDC_DESPATH, m_DesPath);
DDX_Control(pDX, IDC_SRCPATH, m_SrcPath);
再把
m_DesPath = _T("");
m_SrcPath = _T("");
去掉.