Consider the following scenario. You have a Microsoft .NET web application that uses a WebBrowser control, and in it you try to execute code similar to the following:
If you use Windows Internet Explorer 9 to browse to the web application page that hosts the control, and then you change the screen resolution (for example launching a full screen application such as a game), the web page hosting the control will become unresponsive.
MyWebBrowser.Visible = false;
MyWebBrowser.Navigate("about:blank");
MyWebBrowser.Document.Write(String.Empty);
If you use Windows Internet Explorer 9 to browse to the web application page that hosts the control, and then you change the screen resolution (for example launching a full screen application such as a game), the web page hosting the control will become unresponsive.