Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2005
    Posts
    187

    _InternetExplorerVer

    Can anyone tell me why this code, referenced in the manual, doesn't work?

    On Startup:
    Code:
    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
    Error: "On Startup, Line 4: attempt to concatenate global '_InternetExplorerVer' (a nil value)"


    Thanks

  2. #2
    Join Date
    Aug 2004
    Location
    Somewhere in Texas, USA
    Posts
    417
    You also have to turn on the dependency check for IE.

    Look under Project > Dependencies > Applications and select Internet Explorer.

  3. #3
    Join Date
    Mar 2005
    Posts
    187
    Hmmm all I saw was IE ActiveX Control under dependencies. Not sure if thats what your talking about.

    Anyways, I just wrote my own code to check the version. Thanks for the info, though!

  4. #4
    Join Date
    Aug 2004
    Location
    Somewhere in Texas, USA
    Posts
    417
    The IE ActiveX control is what you are suppose to use.

    It is a little confusing since they mention ActiveX, but that is what you use.

    Give it a try.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts