Announcement

Collapse
No announcement yet.

Determining what Version of Internet Explorer is Installed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Determining what Version of Internet Explorer is Installed

    AutoPlay Media Studio 5.0 Knowledge Base

    Determining what Version of Internet Explorer is Installed

    Document ID: IR10073
    The 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

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

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

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