0

我正在用 C++ 编写这个 BHO,

基本上我想要做的是打开一个窗口,但它没有显示,我认为它可能与我传递给它的 HINSTANCE 有关。这是我使用的代码,有人知道这段代码有什么不对吗?谢谢 :)

IServiceProvider* pServiceProvider = NULL;
if (SUCCEEDED(m_pWebBrowser->QueryInterface(
                    IID_IServiceProvider, 
                    (void**)&pServiceProvider)))
{
    IOleWindow* pWindow = NULL;
    if (SUCCEEDED(pServiceProvider->QueryService(
                    SID_SShellBrowser, 
                    IID_IOleWindow,
                    (void**)&pWindow)))
    {
        HWND hwndBrowser = NULL;
        if (SUCCEEDED(pWindow->GetWindow(&hwndBrowser)))
        {
HWND g_hwndMain;


g_hwndMain =  CreateWindow(TEXT ("AnxJTest Class"),TEXT("My Window"),WS_POPUP | WS_VISIBLE,0, 0, 200, 300,NULL, NULL, (HINSTANCE)hwndBrowser, NULL);
ShowWindow(g_hwndMain, SW_SHOW);
        }

        pWindow->Release();
    }

    pServiceProvider->Release();
}
4

0 回答 0