You can also use GetWindowText if you're using a window:
Code:int iLen = GetWindowTextLength(hWnd_Edit); TCHAR *pcBuf = new TCHAR[iLen + 1]; GetWindowText(hWnd_Edit, pcBuf, iLen); // Use pcBuf delete[] pcBuf;
|
Results 1 to 4 of 4
Thread: getting text from editboxThreaded View
|
Click Here to Expand Forum to Full Width |