要求:
   可随时控制任一个或多个子窗口的标题闪烁或终止闪烁。无论如何,将在三天内将分数给所有帮助我的大侠。

解决方案 »

  1.   

    u can use 
    CWnd::FlashWindow
      

  2.   

    如何使用flashwindow,我是新手,请详细具体提示。
      

  3.   

    or define 
    #ifndef WINVER
    #define WINVER 0x0500
    #endif
    int stdafx.h
    and then use
    CWnd::FlashWindowEx void CMainFrame::On32773()
    { CFrameWnd* pacFrm=GetActiveFrame();
    pacFrm->FlashWindowEx(FLASHW_CAPTION,6,0);
    //pacFrm->FlashWindow(TRUE);}
      

  4.   

    AkiraChing(水银):
        谢谢你的帮助,但是我还是没有试通,能否将你的例子给我发过来,
    .cn
       
        谢谢!
    出错提示:
    'FlashWindowEx' : is not a member of 'CFrameWnd'
    'FLASHW_CAPTION' : undeclared identifier
      

  5.   

    stdafx.h#ifndef WINVER
    #define WINVER 0x0500//这里改成0x0500,如果没有就加这段
    #endif
      

  6.   

    如果子窗口是formview怎么做?