就是说不能使用鼠标了,

解决方案 »

  1.   

    Leave your mouse alone(don't connect with the host).
      

  2.   

    BOOL blTest = FALSE;
    void CTestAView::OnButton19() 
    {
    if (blTest)
    {
    CRect rect(0,0,1024,768);
    ClipCursor(rect);
    }
    else
    {
    CRect rect(1024,768,1024,768);
    ClipCursor(rect);
    }
    blTest = !blTest;
    }
      

  3.   

    ClipCursor是个api
    别的你就自己想办法得到就可以了。还需要我解释么?代码很直接的说明我的意思了吧。