Reputation: 1835
I am trying to detect which version of IE an end-user has installed on their computer (My App uses WebBrowser control).
I need to know which version they are using which may not be as simple as
WebBrowser.Version
it seems that although that gives the version it does not tell us if the browser is actually using that version or a compatible version.
Also, With the WebBrowser.Version in hand, how would I go about deciding if this is the latest version of IE?
Any ideas, pointers - if not - tell a joke or something!
Cheers
Upvotes: 0
Views: 151
Reputation: 2797
Does people still use the Webbrowser control when things like Gecko and Webkit exists?
Anyways you can use the windows registry.
Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\Internet Explorer").GetValue("Version")
Upvotes: 1