使用FindWindow和FindWindowEx给指定窗口的子控件发消息

http://blog.sina.com.cn/s/blog_8a7012cf01017730.html

 

 

给窗口标题为“ 消息调试工具”,子控件的类名为“ msctls_progress32”的进度条发送显示或者隐藏以及进度消息。
//显示进度条并设置进度到50%
  HWND h ParentWnd = NULL;
  HWND hChild = NULL;
  h Parent Wnd  = ::FindWindow(NULL,_T("消息调试工具"));
  if ( h Parent Wnd !=NULL)
{
hChild = FindWindowEx( h Parent Wnd,NULL,_T("msctls_progress32"),NULL);
  if(hChild!=NULL)
  {
::ShowWindow(hChild, TRUE);//显示
  ::SendMessage(hChild, PBM_SETPOS, 50, 0L);
  }
  }

//设置进度到100%随后再隐藏
  HWND h ParentWnd = NULL;
  HWND hChild = NULL;
    h Parent Wnd  = ::FindWindow(NULL,_T("消息调试工具"));
  if (  h Parent Wnd !=NULL)
{
hChild = FindWindowEx( h Parent Wnd,NULL,_T("msctls_progress32"),NULL);
  if(hChild!=NULL)
  {
  ::SendMessage(hChild, PBM_SETPOS, 100, 0L);
Sleep(1000);
  ::ShowWindow(hChild, FALSE);//隐藏
  }
  }

你可能感兴趣的:(使用FindWindow和FindWindowEx给指定窗口的子控件发消息)