| Bug#: 44 | Product: i.Scribe/InScribe | Version: v1.88 test9 | Platform: All |
| OS/Version: Windows XP | Status: ASSIGNED | Severity: normal | Priority: P4 |
| Resolution: | Assigned To: fret@memecode.com | Reported By: fret@memecode.com | |
| Component: User Interface | |||
| URL: | |||
| Summary: Ctrl+C and Ctrl+V don't work in the IE html plugin's window. | |||
| Opened: 2005-10-18 12:30 | |||
| Description: | Opened: 2005-10-18 12:30 |
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;
}