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
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
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
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.