用VC打开候选的DLL,open as 设为resource

解决方案 »

  1.   

    我告诉你:
    if (g_hLinkCursor == NULL) // No cursor handle - load our own
    {
            // Get the windows directory
    CString strWndDir;
    GetWindowsDirectory(strWndDir.GetBuffer(MAX_PATH), MAX_PATH);
    strWndDir.ReleaseBuffer(); strWndDir += _T("\\winhlp32.exe");
    // This retrieves cursor #106 from winhlp32.exe, which is a hand pointer
    HMODULE hModule = LoadLibrary(strWndDir);
    if (hModule) {
    HCURSOR hHandCursor = ::LoadCursor(hModule, MAKEINTRESOURCE(106));
    if (hHandCursor)
    g_hLinkCursor = CopyCursor(hHandCursor);
    }
    FreeLibrary(hModule);
    }
    你现在知道在哪里了吧!如果满意请老兄别忘了加分
      

  2.   

    呵呵……早说吗,我就是要winhlp32.exe这个文件
      

  3.   

    sxbyl(白菜)兄,回答小弟的问题!!!。嘻嘻