如何在char数组中复制textbox-> Text内容?
我在vc ++中工作。

最佳答案

使用CWnd :: GetWindowText()

CString str;
CWnd* pWnd = GetDlgItem(IDC_WHATEVER);
pWnd->GetWindowText(str);


将控件的内容放入CString中,或者可以使用数组版本:

TCHAR sz[10];
int nRet = pWnd->GetWindowText(sz, 10);

10-04 21:16