::SetCursor( HCURSOR hCursor  // handle of cursor
   );
 

解决方案 »

  1.   

    CWinApp::DoWaitCursor(1)  begin
    CWinApp::DoWaitCursor(-1)  end
      

  2.   

    BeginWaitCursor()
    长时间工作
    EndWaitCursor()
      

  3.   

    用CWaitCursor 
    BOOL CMyWnd::SomeLengthyProcess()
    {
       CWaitCursor wait;
       //Do the lengthProcessing.   MessageBox("Some result");      //This changes the cursor.
       wait.Restore();         //Restore the Wait cursor.
       //Continue Processing.   //The destructor changes the cursor back to Regular cursor.
       return TRUE;         }
      

  4.   

    xt_jat(桑巴) 的没错,这样就可以了
      

  5.   


    HCURSOR SetCursor(
      HCURSOR hCursor   // handle to cursor
    );API 可以实现.
    先LoadCursor 或创建一个光标名柄再调用API.
      

  6.   

    用CWaitCursor wait;最好,构造函数显示等待鼠标,析构函数恢复原状,无须你人工恢复!
      

  7.   

    开始散分!
    用CWaitCursor最方便!