I am converting an unmanaged windows MFC app from VC6 to VC8. I have a class derived from CString. In it, I reference m_pchData. In VC6, this was no problem. In VC8, I get a C2065:'m_pchData':undeclared identifier error.
Has the implementation of CString changed since VC6

CString m_pchData undeclared in new VC++
BoseMK
JTFML
Tomislav B.
Also there is a line: AssignCopy(stringSrc.GetLength(), stringSrc.m_pchData); for which I get another identifier not found message. Could you please assist with the appropriate conversions into VC8