VC遍历窗口上的控件

CWnd *pChild = this->GetWindow(GW_CHILD);
TCHAR szClassName[255] = { 0 };
while (pChild)
{
	//获得类名
	GetClassName(pChild->GetSafeHwnd(), szClassName, 255);
	CString strTemp=_T("");
	//清空控件
	pChild->SendMessage(WM_SETTEXT, 0, (LPARAM)(LPWSTR)(LPCWSTR)strTemp );
	pChild = pChild->GetWindow(GW_HWNDNEXT);
}

新闻名称:VC遍历窗口上的控件
链接分享:http://pwwzsj.com/article/psjoge.html