PlugIn not loading Acrobat 8

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default PlugIn not loading Acrobat 8

    Hi,

    We migrated old version(Ver 7) plug in to Version 8 using 8 SDK libraries and VS2005.On development box it's working fine according to our requirements, but the same plug in file is copied to plug_ins folder of other machine having acrobat 8 but the plug in is not loading.

    please give some solution.

    Thanks
    ssanthu@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Acrobat 7 plugin not working in Acrobat 8
      Hi, I have developped a plugin that run correctly in Acrobat 7. But if I use it in Acrobat 8 some fucntions are not working. Are there...
    2. anybody interested in maintaining acrobat plugin for use of itextwithin acrobat?
      Hi, Is anybody interested in hosting and maintaining the sourcecode of a acrobat plugin to extend acrobat using itext? A few years ago I wrote a...
    3. Does Acrobat Browser plugin allow full Adobe Acrobat 7.0 functionality
      Hello, currently I’m starting a new project. I have to design and implement a document retrieval system. The document format is PDF. The...
    4. Web plugin for Acrobat 6.0
      In Acrobat 5.0 whenever I clicked a pdf online it fired up Acrobat and away we went. However, in Acrobat 6.0 this doesnt happen for some reason,...
    5. since adding the RAW plugin, loading a jpg freezes PS 7.01
      Since incstalling the RAW plugin, whenever I attempt to load a .jpg file which has not been previously saved in PhotoShop, PhotoShop 7.01 will freeze...
  3. #2

    Default Re: PlugIn not loading Acrobat 8

    Did you compile your code in debug or release mode?
    Bernd Alheit Guest

  4. #3

    Default Re: PlugIn not loading Acrobat 8

    Compiled in debug and release mode.
    But i took the release version to copy to other machine.

    First step is to make work in other system having acrobat professional edition..

    Then our final goal is to distrubute this PlugIn to external users.
    Users may use any edition like professional ,reader or standard.
    After completion of first step then we will do reader enable.

    Both(debug and release) are working fine in development machine having Acobat 8 and VS2008.

    Thanks,
    ssanthu@adobeforums.com Guest

  5. #4

    Default Re: PlugIn not loading Acrobat 8

    Use the Dependency Walker ( <http://www.dependencywalker.com/> ) to check all necessary DLLs.
    Bernd Alheit Guest

  6. #5

    Default Re: PlugIn not loading Acrobat 8

    Hi,

    The common cause of this is your release build still containing a debug or similar flag that requires the .NET frameworks to be installed.

    Using the dependency walker described above should allow you to narrow down what is causing the problem and then you can hopefully remove it from the project.

    Cheers

    Malky
    malkyt8@adobeforums.com Guest

  7. #6

    Default Re: PlugIn not loading Acrobat 8

    I will try ...

    Thank you very much
    ssanthu@adobeforums.com Guest

  8. #7

    Default Re: PlugIn not loading Acrobat 8

    Hi,

    Found MFC80D.DLL,MSVCR80D.DLL AND MSVCP80D.DLL
    In relese mode PlugIn file, but i didn't added those.

    Please tell what to do next? i mean how to remove those dlls from PlugIn file(.api)

    Thanks in advance.
    ssanthu@adobeforums.com Guest

  9. #8

    Default Re: PlugIn not loading Acrobat 8

    You must compile and bind your code in release mode.
    Bernd Alheit Guest

  10. #9

    Default Re: PlugIn not loading Acrobat 8

    Yes i Rebuild the project with release mode in VS2005 and opened .api file in dependecywalker , but still those dll's are presenting
    ssanthu@adobeforums.com Guest

  11. #10

    Default Re: PlugIn not loading Acrobat 8

    Bernd,

    Now I removed those dll's ..
    Then i will try to test..

    Thanks you very much for your help..
    ssanthu@adobeforums.com Guest

  12. #11

    Default Re: PlugIn not loading Acrobat 8

    HI,

    It looks to me like those dll are DEBUG dll's that means that even though you are choosing release mode, some setting in your project is still including the Debug versions of the DLL's.

    To solve this you need to check your release settings and make sure that all the settings are valid for a release project.

    Cheers

    Malky
    malkyt8@adobeforums.com 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