Determining what Version of Internet Explorer is Installed
Document ID: IR10073The information in this article applies to:
- AutoPlay Media Studio 5.0 Professional Edition
SUMMARY
This article describes how to determine what version of Internet Explorer is installed.
DISCUSSION
- To detect the version of Internet Explorer that is installed on the user's system, enable the Internet Explorer dependency.
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
- Insert the following script to the On Show event of your first page:
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.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
MORE INFORMATION
For more information please see the following topics in the AutoPlay Media Studio 5.0 help file:
- Program Reference | Projects | Dependencies | Applications
KEYWORDS: AutoPlay Media Studio 5.0, Required, Dependency, Application, Internet Explorer
Last reviewed: October 3, 2003
Copyright © 2003 Indigo Rose Corporation. All rights reserved.