你的窗口HANDLE对不对啊?消息对但发错了对象可是没有用的。

解决方案 »

  1.   

    getwindowtext hwnd 看看得到什么
    hwnd是随即产生的马上重复几乎不可能
      

  2.   

    用DestroyWindow试试
    DestroyWindow
    The DestroyWindow function destroys the specified window. The function sends WM_DESTROY and WM_NCDESTROY messages to the window to deactivate it and remove the keyboard focus from it. The function also destroys the window's menu, flushes the thread message queue, destroys timers, removes clipboard ownership, and breaks the clipboard viewer chain (if the window is at the top of the viewer chain). If the specified window is a parent or owner window, DestroyWindow automatically destroys the associated child or owned windows when it destroys the parent or owner window. The function first destroys child or owned windows, and then it destroys the parent or owner window. DestroyWindow also destroys modeless dialog boxes created by the CreateDialog function. BOOL DestroyWindow(
      HWND hWnd   // handle to window to destroy
    );
     
    Parameters
    hWnd 
    Handle to the window to be destroyed. 
    Return Values
    If the function succeeds, the return value is nonzero.
    '★★★★★★★★★★★★★★★★★★
    '★★★如果执行成功,返回非0值★★★
    '★★★★★★★★★★★★★★★★★★If the function fails, the return value is zero. To get extended error information, callGetLastError. Res
    A thread cannot use DestroyWindow to destroy a window created by a different thread. If the window being destroyed is a child window that does not have the WS_EX_NOPARENTNOTIFY style, a WM_PARENTNOTIFY message is sent to the parent. Windows CE: The DestroyWindow function does not send the WM_NCDESTROY message.QuickInfo
      Windows NT: Requires version 3.1 or later.
      Windows: Requires Windows 95 or later.
      Windows CE: Requires version 1.0 or later.
      Header: Declared in winuser.h.
      Import Library: Use user32.lib.