HRESULT u = S_OK;
LPDISPATCH pDispatch = m_wndBrowser.get_Document ();
als (pDispatch! = VERKLAAR) nietig
{
IHTMLDocument2* pHtmlDoc=NULL;
u = pDispatch->QueryInterface (__uuidof (IHTMLDocument2), (nietige **) &pHtmlDoc);
IHTMLWindow2* pWindow;
als (pHtmlDoc! =NULL)
{
u = pHtmlDoc->get_parentWindow (&pWindow);
pHtmlDoc->Release ();
}
BEWEER (VOLGEND (u));
lange docheight=0;
IHTMLElement* pe=NULL;
pHtmlDoc->get_body (&pe);
IHTMLTextContainer* pe2=NULL;
als (pe! =NULL)
{
pe->QueryInterface (&pe2);
pe->Release ();
}
als (pe2! =NULL)
{
pe2->get_scrollHeight (&docheight);
pe2->Release ();
}
als (pWindow! =NULL&&docheight>0)
{
pWindow->scrollTo (0, docheight);
pWindow->Release ();
}
pDispatch->Release ();
}
|