Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect IE version from a WinForms application

Is it possible the detect the version of IE installed on a machine from a WinForms application?

EDIT 1

I'm specifically interested in establishing if IE9 is installed or not. Multiple IE versions could be installed, but it is IE9 specifically that causes my application a problem.

like image 525
Godders Avatar asked Jun 09 '11 14:06

Godders


1 Answers

How about;

string ver = (new WebBrowser()).Version.ToString();
like image 127
Alex K. Avatar answered Sep 20 '22 11:09

Alex K.