HRESULT hr = S_OK;
pDispatch LPDISPATCH = m_wndBrowser.get_Document ();
если (pDispatch! = NULL)
{
pHtmlDoc=NULL IHTMLDocument2*;
hr = pDispatch->QueryInterface (__uuidof (IHTMLDocument2), (свободное пространство **) &pHtmlDoc);
pWindow IHTMLWindow2*;
если (pHtmlDoc! =NULL)
{
hr = pHtmlDoc->get_parentWindow (&pWindow);
pHtmlDoc->Release ();
}
УТВЕРДИТЕ (ПРЕУСПЕТО (hr));
длиннее docheight=0;
pe=NULL IHTMLElement*;
pHtmlDoc->get_body (&pe);
IHTMLTextContainer* pe2=NULL;
если (pe! =NULL)
{
pe->QueryInterface (&pe2);
pe->Release ();
}
если (pe2! =NULL)
{
pe2->get_scrollHeight (&docheight);
pe2->Release ();
}
если (pWindow! =NULL&&docheight>0)
{
pWindow->scrollTo (0, docheight);
pWindow->Release ();
}
pDispatch->Release ();
}
|