Detect what Version of Internet Explorer is Installed
To detect the version of Internet Explorer that is installed on the user's system:
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.
To detect the version of Internet Explorer that is installed on the user's system:
- Enable the Internet Explorer dependency
- Insert the following script to the On Show event of your first page:
Kod:
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.