Results 1 to 2 of 2

Thread: Determine if Adobe Reader is installed

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2005
    Posts
    1

    Determine if Adobe Reader is installed

    Is there any way to determine if Adobe Reader is installed on the client machine?

    I'd like to do this w/o any third party controls.

    Thanks in advance!!!

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Determine if Adobe Reader is installed

    Code:
    <SCRIPT LANGUAGE="VBScript">
       on error resume next
       useAcrobat = not IsNull(CreateObject("AcroExch.Document"))
       '                or CreateObject("PDF.PdfCtrl.1")
    
    </SCRIPT>
    
    <SCRIPT>
    <!--
       if (useAcrobat)
          document.write("Acrobat installed");
       else
          document.write("Acrobat not installed");
    //-->
    </SCRIPT>

Posting Permissions

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



Click Here to Expand Forum to Full Width