SetWindowTextA不对吧, 改成SetWindowText或者SetWindowTextW。SetWindowTextW是CEdit对象的函数而不是CString对象的.
到类向导的Member Variables中看一下,你的m_strPath和m_strText的类型是CString的吧,应该改为CEdit的。
SetWindowTextA有问题。你是不是打错了,找到SetWindowTextA,然后改成SetWindowText试验一下。
SetWindowText不是字符串的成员函数,也就是你不能在字符串中用点操作符引用该函数,关于函数的用法去查msdn吧