我在2000下用SetCapture埔获鼠标,一旦鼠标未于窗口的上部和左部,得到的鼠标位置不准备.
对于这个问题,有几点说明:免得有些人又要来得我分
  1.同样的该程序在98下运行正常.
  2.我已经用ClientToScreen转换
另一问题:如何隐藏对话框程序的窗口,一运行起来就隐藏,我用ShowWindow(hwnd,SW_HIDE)根本不行

解决方案 »

  1.   

    忘了跟大家说了,我使用<<Windows程序设计>>的那本书(就是那个大师写的,上下册,160元)中一个例子,同样不行,例子名叫blowup
      

  2.   

    另一问题:如何隐藏对话框程序的窗口,一运行起来就隐藏,我用ShowWindow(hwnd,SW_HIDE)根本不行我度过这样子隐藏起不是不可以。而是窗口一但接受某些消息。又会显示出来。
    不知道是不是这样子。至于另一个问题。把代码贴出来看看了。
      

  3.   

    什么叫不准确? 什么又叫上部左部? 我怀疑你的"不准确", 事实上是你的误解. 但是我没你的程序, 无法判断. 对话框隐藏只能考虑在首次 WM_PAINT 时, 给它 ShowWindow(hWnd, SW_HIDE). 重载其它的窗口初始化消息可能都没用, 因为系统内部最终会SHOW它.
      

  4.   

    用SetWindowPos看看
    SetCapture有很限制.應該多看看MSDN
    The SetCapture function sets the mouse capture to the specified window belonging to the current thread. SetCapture captures mouse input either when the mouse is over the capturing window, or when the mouse button was pressed while the mouse was over the capturing window and the button is still down. Only one window at a time can capture the mouse. 
    If the mouse cursor is over a window created by another thread, the system will direct mouse input to the specified window only if a mouse button is down. 
    HWND SetCapture(
      HWND hWnd   // handle to window
    );
    Parameters
    hWnd 
    [in] Handle to the window in the current thread that is to capture the mouse. 
    Return Values
    The return value is a handle to the window that had previously captured the mouse. If there is no such window, the return value is NULL. 
    Res
    Only the foreground window can capture the mouse. When a background window attempts to do so, the window receives messages only for mouse events that occur when the cursor hot spot is within the visible portion of the window. Also, even if the foreground window has captured the mouse, the user can still click another window, bringing it to the foreground. 
    When the window no longer requires all mouse input, the thread that created the window should call the ReleaseCapture function to release the mouse. 
    This function cannot be used to capture mouse input meant for another process. 
    When the mouse is captured, menu hotkeys and other keyboard accelerators do not work. 
    Windows 95/98/Me: Calling SetCapture causes the window that is losing the mouse capture to receive a WM_CAPTURECHANGED message.
      

  5.   

    窗口的上部和左部你不能理解吗?
    比如你的一个窗口的左上角在屏幕位置的(200,200),那么(300,100)就算窗口的上部,(100,300)就算窗口的左部.不知道你有没有<<Windows程序设计>>的下册,你找到blowup在2000下试试能不能用就知道
      

  6.   

    在OnPaint()中调用
    this->ShowWindow(SW_HIDE);
      

  7.   

    打开对话框资源,将起属性Visible取消,就能隐藏了
    SetCapture关键是在你需要的窗口里调用,但从来没有
    听说不能获取准确的鼠标位置信息。你只需要在你的调用
    SetCapture的窗口里处理WM_MOUSEMOVE消息就可以了
      

  8.   

    SetCapture捕获鼠标,在2000下是绝对捕获不到窗口外面的点的
    必须做鼠标钩子才能实现你的功能
      

  9.   

    在InitInstance()中使用m_pMainWnd->ShowWindow(SW_HIDE);