This is Bugzilla
Bugzilla Version 2.22.7
View Bug Activity | Format For Printing | XML | Clone This Bug
I've tried fixing this and no luck so far.
(In reply to comment #1) > I've tried fixing this and no luck so far. I've had the same problem with the IE control in my own programs, It was solved by calling 'OleInitialize(NULL);' MSDN Documentation: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/html/9a13e7a0-f2e2-466b-98f5-38d5972fa391.asp
I tried adding that to the DllMain of my plugin. The hosting application already calls that on startup. Didn't make any difference. My DllMain looks like this at the moment: BOOL DllMain(HINSTANCE hInstDLL, DWORD Reason, LPVOID Res) { switch (Reason) { case DLL_PROCESS_ATTACH: { // OleInitialize(NULL); doesn't change anything? _Module.Init(ObjectMap, (HINSTANCE)GetCurrentProcess()); AtlAxWinInit(); break; } } return true; }