Copy link to clipboard
Copied
We have a plug-in application, which was implemented for 32 bit Acrobat was fine on the same.
Recently we got a requirement for 64 bit version of acrobat, so I followed the steps mentioned in 64 bit SDK and upgraded the same application for 64 bit acrobat. I was able to compile the code and successfully created the plug-in, which I added to plug-ins folder of acrobat (say.... Adobe\Acrobat DC\Acrobat\plug_ins). But when I try to open the acrobat, it is not opening the acrobat. (and when that plug-in removed from the folder, acrobat opening).
When I try to debug the code, below things are shown.
What causing the acrobat failing to open in my Plug-in application.
Please help me to sort out this issue.
Copy link to clipboard
Copied
Hi,
Maybe it would help if you could provide some idea as to what your plug-in /code does, based on the above it is doing something that is not liked and therefore erroring, but this is very hard to work out without actually seeing what you are running.
Can you cut down your plug-in, and if it loads, then gradually add more of it back in, until it fails?
Copy link to clipboard
Copied
Duplicate posting
Copy link to clipboard
Copied
I took the time to reply to your other post. Please take the time to tell us what happened when you tried my suggestions. On adding a third party plug-in, Adobe Acrobat DC ... - Adobe Support Community - 13201206
Copy link to clipboard
Copied
Sorry it really helped me (Adding a MessgeBox at different functions), to figure out the problem,
It is actually a dll in our code, that was preventing our plug-in application, when I bypass that dll code, plug-in loaded into acrobat and acrobt menu showing my plug-in app.
thank you for your suggestion.
Copy link to clipboard
Copied
Thank you for sharing that solution. I hope it will hope in future when people face a similar problem.
Copy link to clipboard
Copied
Is PIMain.cpp file not available in 64 bit SDK, I have a plug-in application which need to reference a C# dll, for that I need to set the /clr option ON.
If I set it to ON, I need PIMain.cpp to compile the code with /clr option, and can't use PIMain.c in the project, please help me.