HRESULT ora = S_OK;
pDispatch di LPDISPATCH = m_wndBrowser.get_Document ();
se (pDispatch! = POSIZIONE DI SEGNALE MINIMO)
{
pHtmlDoc=NULL di IHTMLDocument2*;
ora = pDispatch->QueryInterface (__uuidof (IHTMLDocument2), (vuoto **) &pHtmlDoc);
pWindow di IHTMLWindow2*;
se (pHtmlDoc! =NULL)
{
ora = pHtmlDoc->get_parentWindow (&pWindow);
pHtmlDoc->Release ();
}
ASSERIRE (RIUSCITO (ora));
docheight=0 lungo;
pe=NULL di IHTMLElement*;
pHtmlDoc->get_body (&pe);
IHTMLTextContainer* pe2=NULL;
se (pe! =NULL)
{
pe->QueryInterface (&pe2);
pe->Release ();
}
se (pe2! =NULL)
{
pe2->get_scrollHeight (&docheight);
pe2->Release ();
}
se (pWindow! =NULL&&docheight>0)
{
pWindow->scrollTo (0, docheight);
pWindow->Release ();
}
pDispatch->Release ();
}
|