Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>It appears you need to fiddle with the registry as per this article: -</p> <p><a href="http://blogs.msdn.com/ie/archive/2009/03/10/more-ie8-extensibility-improvements.aspx" rel="noreferrer">http://blogs.msdn.com/ie/archive/2009/03/10/more-ie8-extensibility-improvements.aspx</a></p> <p>To run a WebBrowser control in IE8 Standards Mode, use the following new value into the registry:</p> <pre><code>[(HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE)\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION] "MyApplication.exe" = dword 8000 (Hex: 0x1F40) </code></pre> <p>To run in IE7 Standards Mode, use the following registry value:</p> <pre><code>[(HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE)\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION] "MyApplication.exe" = dword 7000 (Hex: 0x1B58) </code></pre> <p>For IE8 RTM, we’ve added a new “forced” IE8 Standards Mode value. When an application opts into this mode, the Web Browser control will use the IE8 User-Agent string and Browser Emulation mode strictly. It will also ignore fallback features such as the built-in Compatibility View list and the user-generated Compatibility View list when loading pages. To run in “forced” IE8 Standards Mode, use the following registry value:</p> <pre><code>[(HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE)\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION] "MyApplication.exe" = dword 8888 (Hex: 0x22B8) </code></pre> <p>In all of these examples, “MyApplication.exe” refers to the name of your application.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload