I created the following class using WTL/COM technologies. This class create window which contains ActiveX object of Internet Explorer (via CAxWindow2)
Class is a part of plugin dll for Internet Explorer.
And I have a problem - TAB key didn't work in popup window.
Suppose that the reason is - Active X window process TAB key to the wrong window. Any ideas how to fix it?
P.S. I have tried this solution http://support.microsoft.com/kb/233263, but didn't know how to process TAB key event inside hook procedure to ActiveX window
P.P.S. There is the last answer "Implement IServiceProvider in the container's IOleClientSite implementation. And when IServiceProvider::QueryService is called for SID_SProtectFocus, return an object that implements IProtectFocus." from http://social.msdn.microsoft.com/Forums/en/ieextensiondevelopment/thread/c6a332b7-0135-4203-998b-738f62b0e8fb but I didn't have an idea how to use it
class PopupWindow:public CComObjectRootEx<CComSingleThreadModel>
,public CWindowImpl<PopupWindow, CAxWindow2>
,public IObjectWithSiteImpl<PopupWindow>
,public IDispEventImpl<1933, PopupWindow>
{
public:
DECLARE_WND_SUPERCLASS(nullptr, CAxWindow2::GetWndClassName())
BEGIN_COM_MAP(PopupWindow)
COM_INTERFACE_ENTRY(IObjectWithSite)
END_COM_MAP()
BEGIN_SINK_MAP(PopupWindow)
END_SINK_MAP()
BEGIN_MSG_MAP_WITH_TRY(PopupWindow)
END_MSG_MAP_WITH_CATCH()
HRESULT CreatePopupWindow(SyncServer* server, CRect* r = nullptr, HWND parent = nullptr)
{
HRESULT hr = S_OK;
if (IsWindow())
return S_OK;
CRect rect(0, 0, 700, 500);
if (r)
rect = *r;
Create(parent, rect, nullptr, WS_OVERLAPPEDWINDOW | WS_TABSTOP, 0U);
CenterWindow(HWND_DESKTOP);
CreateControl(L"about:blank", nullptr, nullptr);
// Query IWebBrowser2, setup listener and navigate to site which contains login
// form
.......
ShowWindow(SW_SHOW);
}
private:
CComPtr<IPopupLoginEventListener> listener_;
};