Download IeBrowserEmulation.zip, last updated 28/06/2014 (18.63 KB)

Download
  • md5: 565fb8296871228bd35c3b3daa58d187
using System;
using System.Windows.Forms;

namespace IeBrowserEmulation
{
  // Configuring the emulation mode of an Internet Explorer WebBrowser control
  // http://cyotek.com/blog/configuring-the-emulation-mode-of-an-internet-explorer-webbrowser-control

  internal static class Program
  {
    #region Private Class Members

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    private static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new MainForm());
    }

    #endregion
  }
}

Donate

Donate