HRESULT hr = S_OK;
LPDISPATCH pDispatch = m_wndBrowser.get_Document ();
jeżeli (pDispatch! = NIEOBOWIĄZUJĄCY)
{
IHTMLDocument2* pHtmlDoc=NULL;
hr = pDispatch->QueryInterface (__uuidof (IHTMLDocument2), (pustka **) &pHtmlDoc);
IHTMLWindow2* pWindow;
jeżeli (pHtmlDoc! =NULL)
{
hr = pHtmlDoc->get_parentWindow (&pWindow);
pHtmlDoc->Release ();
}
ZAPEWNIAĆ (UDAWAĆ SIĘ (hr));
tęsknić docheight=0;
IHTMLElement* pe=NULL;
pHtmlDoc->get_body (&pe);
IHTMLTextContainer* pe2=NULL;
jeżeli (pe! =NULL)
{
pe->QueryInterface (&pe2);
pe->Release ();
}
jeżeli (pe2! =NULL)
{
pe2->get_scrollHeight (&docheight);
pe2->Release ();
}
jeżeli (pWindow! =NULL&&docheight>0)
{
pWindow->scrollTo ((0), docheight);
pWindow->Release ();
}
pDispatch->Release ();
}
|