-
1. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
lrosenth Feb 9, 2011 5:29 AM (in response to andrejusc)It appears that when you built your plugin originally, you set the build flags in such a way as to ASSUME that Acrobat was going to load libraries for you. NEVER a good thing (and certainly not recommended in ANY circumstance).
So yes, I would rebuild your code SIMPLY changing the build flag to include the MSVC runtime directly. Easy enough.
-
2. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
andrejusc Feb 9, 2011 5:43 AM (in response to lrosenth)I always prefer to use shared libraries, i.e. DLLs, in their supposed shared way and not statically embedded into my executable if I know that some environment is pretty stable and customer is aware of various possible DLLs dependencies. If Acrobat could do some job for me - then I'm happy with that without allocation of additional memory/resources needed in case of static linking.
So, you don't answer my question. What C++ compiler's version should be used to put MSVCP90.DLL reference now instead of previously used MSVCP80.DLL?
-
3. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
lrosenth Feb 9, 2011 6:13 AM (in response to andrejusc)VS2008 is the version for Acrobat X. But if you go that route, then you will need separate plugins for A9 and AX...
-
4. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
andrejusc Feb 9, 2011 6:20 AM (in response to lrosenth)Good. Yes, I know possible implications of such step and I very often use Dependency Checker tool for that reason.
Btw, in regards to VS2008 - is it possible to use just VS2008 Express or some other version (like Professional/etc.) is required for compilation?
-
5. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
lrosenth Feb 9, 2011 6:35 AM (in response to andrejusc)We only support the full version, not Express.
-
6. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
hhn000 Mar 15, 2011 7:49 AM (in response to lrosenth)Is there any chance of the SDK supporting VS 2010?
-
7. Re: Acrobat 10 and plug-ins for Acrobat 9 incompatibility?
lrosenth Mar 15, 2011 8:25 AM (in response to hhn000)No.


