In IE7 there\'s a \"zoom\" feature built-in (show in the status bar), allowing you to zoom in up to 400%. I\'m using the WebBrowser .NET control in a demo/simulation app, an
Easy tip:
//Zoom IN webBrowser1.Focus(); SendKeys.Send("^{+}"); // [CTRL]+[+] //Zoom OUT webBrowser1.Focus(); SendKeys.Send("^-"); // [CTRL]+[-] //Zoom 100% webBrowser1.Focus(); SendKeys.Send("^0"); // [CTRL]+[0]