Classwizard 도움없이 CAxWindow.Create 로 실제 보여줄 윈도우를 만들고 CAxWindow 의 IAxWinHostWindow 를 쿼리해서 얻고 IAxWinHostWindow 에서 CreateControl 로 필요한 컨트롤을 생성한다 CAxWindow axObject; CComPtr spHost; axObject.Create(m_hWnd, rect, NULL, WS_CHILD | WS_CLIPCHILDREN, WS_EX_CLIENTEDGE); axObject.QueryHost(&spHost); spHost->CreateControl( [CLSID], axObject, NULL ); axObject.QueryControl( [interface implemented object] ); --..