Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default VBScript version ?


    How can I check what version of VBScript is currently installed on my
    computer ?



    Paul White Guest

  2. Similar Questions and Discussions

    1. #25558 [Csd]: Dbase Version Check added in 4.3.3 detecting bad version when using memo fields
      ID: 25558 Updated by: vlad@php.net Reported By: dsherron at nbc dot edu Status: Closed Bug Type: dBase...
    2. #25558 [Asn->Csd]: Dbase Version Check added in 4.3.3 detecting bad version when using memo fields
      ID: 25558 Updated by: vlad@php.net Reported By: dsherron at nbc dot edu -Status: Assigned +Status: ...
    3. #25558 [Opn->Asn]: Dbase Version Check added in 4.3.3 detecting bad version when using memo fields
      ID: 25558 Updated by: sniper@php.net Reported By: dsherron at nbc dot edu -Status: Open +Status: ...
    4. #25558 [Opn]: Dbase Version Check added in 4.3.3 detecting bad version when using memo fields
      ID: 25558 User updated by: dsherron at nbc dot edu Reported By: dsherron at nbc dot edu Status: Open Bug Type: ...
    5. VBScript version
      I think the ASP that I wish to run needs a later version of VBScript than is installed. How do you find the VBScript version (server of course)?...
  3. #2

    Default Re: VBScript version ?

    Paul White wrote on 08 aug 2003 in microsoft.public.inetserver.asp.db:
    > How can I check what version of VBScript is currently installed on my
    > computer ?
    <%
    response.write "Version "& ScriptEngineMajorVersion & "." &
    ScriptEngineMinorVersion
    %>

    Gives here: Version 5.6


    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)
    Evertjan. Guest

  4. #3

    Default Re: VBScript version ?

    In article <uZ$BiCaXDHA.2256@TK2MSFTNGP10.phx.gbl>,
    [email]pwa@bigpond.net.auNO[/email]SPAM (Paul White) wrote:
    >
    > How can I check what version of VBScript is currently installed on my
    > computer ?
    >
    >
    >
    >
    You need to locate the file vbscript.dll (or similar) and right click on
    it and check the version.

    The latest is 5.6, I think. If you have anything less, you can the latest
    from Microsoft's web site.

    Leslie
    [url]www.icuknet.co.uk[/url]

    Leslie Costar Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139