我必须读取插入到 Windows 中可编辑文本字段中的数据。
只是为了测试,我创建了以下测试代码。
//Define variable and textfield
LPTSTR radiusValue;
HWND hwndradiusValue;
//Create Text Field. Note that, hWnd is handler to original window
hwndradiusValue=CreateWindowEx(WS_EX_WINDOWEDGE,TEXT("Edit"), TEXT(""), WS_CHILD | WS_VISIBLE, 10, 10, 50, 25, hWnd, NULL, NULL, NULL);
//Get Text from handle
GetWindowText(hwndradiusValue,radiusValue,30);
//Display the message
MessageBox(NULL, radiusValue, "TESTING", MB_OK);
我期待消息在文本字段中显示该项目。但它没有。它显示空字符。我该如何解决这个问题?