控件的显示问题,微软提供的dsofrmaer控件在使用时老是显示在最前面,别的控件挡也当不住,
它里面涉及窗口的代码: m_hwnd = CreateWindowEx(0, "DSOFramerOCXWnd", NULL,
                            WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE,
                            rcPos.left, rcPos.top, m_Size.cx, m_Size.cy,
                            m_hwndParent, NULL, v_hModule, NULL); m_hwnd = CreateWindowEx(0, "DSOFramerDocWnd", NULL, WS_CHILD,
                    m_rcViewRect.left, m_rcViewRect.top,
(m_rcViewRect.right - m_rcViewRect.left),
(m_rcViewRect.bottom - m_rcViewRect.top),
                    hwndCtl, NULL, v_hModule, NULL);
怎么改写有可能去掉这个毛病?