petit exemple
//int GetWindowText(HWND hWnd, LPTSTR lpString, int nMaxCount); //int GetWindowTextLength(HWND hWnd);
char* buffer; int length;
length = GetWindowTextLength( hWndEditBox ); buffer = (char*)malloc(length + 1); // C++ >> buffer = new char[length + 1];
GetWindowText(hWndEditBox, buffer, length);
-=-= ExCRT =-=-
|