
Stopping webpage resizing in WebBrowser control
Hi!
I have an app that works great, with one exception...
If I go to a webpage that contains resizing or repositioning code, my
webbrowser control will try and do it. All the webbrowser events fire before
the page is finished rendering, so I can't even trap and reposition my
control after it happens.
The code that affects my webbrowser control looks like:
self.moveTo(-4,-4);
self.resizeTo(1024+8,768+8)
How can I stop this from affecting my application?
Thanks!