|

How do I... ?

AnswerList of Questions


Detect what Version of Internet Explorer is Installed


To detect the version of Internet Explorer that is installed on the user's system:


1. Enable the Internet Explorer dependency


image

Note: If you want to detect the version of Internet Explorer, but not require your user to have it installed, set the required version to 0.0.0.0


image

2. Insert the following script to the On Show event of your first page:


if _InternetExplorerVer == "0.0.0.0" then Dialog.Message("Internet Explorer", "Internet Explorer is not

installed"); else

Dialog.Message("Internet Explorer", "Internet Explorer version " .. _InternetExplorerVer .. " is installed on this system");

end


image

Note: The above script will pop up a dialog box at runtime displaying the version of internet explorer that the user's computer currently has installed.


image

|