DWORD dwStyle = WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS;

GetClientRect(&rect);
m_hHtmlWnd = ::CreateWindow (DISPLAYCLASS, 
NULL,
dwStyle,
rect.left, 
67, 
rect.right, 
rect.bottom,
m_hWnd, 
0, 
::AfxGetInstanceHandle(),
NULL); ::SetWindowLong(m_hHtmlWnd, GWL_ID, 12321);
::SetFocus(m_hHtmlWnd);

解决方案 »

  1.   

    error C2039: “DestroyWindow”: 不是“HWND__”的成员
      

  2.   

    FromHandle(m_hHtmlWnd)->DestroyWindow();  能够彻底销毁掉这个新建窗体吗,我用这个窗体来家载了一个网页,销毁的时候好慢啊,另外
    http://topic.csdn.net/u/20090210/11/72d41a69-7003-454f-a51c-f645579d05f7.html?seed=1961045906这个贴字,我已经解决了,要分的朋友,可以过去jf  下班揭贴 
      

  3.   

    DestroyWindow Function--------------------------------------------------------------------------------
    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.
    SyntaxBOOL DestroyWindow(          HWND hWnd
    );
    ParametershWnd
    [in] Handle to the window to be destroyed. 
      

  4.   

    你可以参照http://blog.csdn.net/badboyfind/archive/2007/11/28/1906298.aspx
    里面有详细的解释,希望对你有用。