因此,我在 CDialog 类的标题中声明了一个 CString 和一个 CEdit 控件。
CString m_strRem;
CEdit m_editRem;
好的,当我尝试从编辑控件中获取文本时,我使用
m_editRem.GetWindowText(m_strRem);
但在操作后m_strRem
显示为 a <Bad Ptr>
。
如果我声明另一个CString
并使用相同的方法,则文本将传递给新的CString
CString strVal;
m_editRemorca.GetWindowText(strVal);
但同样,如果我想传递strVal
给m_strRem
, m_strRem
是一个<Bad Ptr>
.
我无法深入了解这一点。