2

基本上,我想开发一个 BHO,它可以验证表单上的某些字段并自动将一次性电子邮件放置在适当的字段中(据我所知更多)。所以在 DOCUMENTCOMPLETE 事件中我有这个:

for(long i = 0; i < *len; i++)
{
    VARIANT* name = new VARIANT();
    name->vt = VT_I4;
    name->intVal = i;
    VARIANT* id = new VARIANT();
    id->vt = VT_I4;
    id->intVal = 0;
    IDispatch* disp = 0;
    IHTMLFormElement* form = 0;
    HRESULT r = forms->item(*name,*id,&disp);
    if(S_OK != r)
    {
        MessageBox(0,L"Failed to get form dispatch",L"",0);// debug only
        continue;
    }
    disp->QueryInterface(IID_IHTMLFormElement2,(void**)&form);
    if(form == 0)
    {
        MessageBox(0,L"Failed to get form element from dispatch",L"",0);// debug only
        continue;
    }

    // Code to listen for onsubmit events here...         
}

我将如何使用 IHTMLFormElement 接口来监听 onsubmit 事件?

4

1 回答 1

1

一旦有了指向要为其接收事件的元素的指针,您就可以QueryInterface()使用它IConnectionPointContainer,然后连接到该元素:

REFIID riid = DIID_HTMLFormElementEvents2;
CComPtr<IConnectionPointContainer> spcpc;
HRESULT hr = form->QueryInterface(IID_IConnectionPointContainer, (void**)&spcpc);
if (SUCCEEDED(hr))
{
    CComPtr<IConnectionPoint> spcp;
    hr = spcpc->FindConnectionPoint(riid, &spcp);
    if (SUCCEEDED(hr))
    {
        DWORD dwCookie;
        hr = pcp->Advise((IDispatch *)this, &dwCookie);
    }
}

一些注意事项:

  1. 您可能想要缓存dwCookiecpc,因为稍后当您调用pcp->Unadvise()断开接收器时需要它们。
  2. pcp->Advise()上面的调用中,我通过了这个。您可以使用您拥有的任何对象 implements IDispatch,它可能是也可能不是这个对象。设计留给您。
  3. riid将是您想要接收的事件调度接口。在这种情况下,您可能需要DIID_HTMLFormElementEvents2.

以下是断开连接的方法:

pcp->Unadvise(dwCookie);

如果您还有其他问题,请告诉我。

编辑-1:

是的,那个 DIID 是错误的。应该是:DIID_HTMLFormElementEvents2

这是我找到它的方法:

C:\Program Files (x86)\Microsoft Visual Studio 8\VC\PlatformSDK>findstr /spin /c:"Events2" *.h | findstr /i /c:"form"
于 2009-09-13T18:42:04.293 回答