Re: Missing ligature font chars
Ok, this means that the app which generated the PDF added the ligatures as extra characters to the font in a spare position and did not add a ToUnicode CMap, which would be needed for accurate...
View ArticleRe: how to use acropdf even if addon is deactivated in InternetExplorer
Well, it is not a VB6-problem, the sample in the SDK behaves the same way. I don't mind, if we focus on the sample. Best regards, Thomas
View ArticleRe: how to use acropdf even if addon is deactivated in InternetExplorer
Are you using the sample with VB6?
View ArticleIs it allowed to convert pdf documents into rtf using Adobe SDK
Hello Can I convert pdf document into rtf using Adobe SDK?Is available this functionality on c# code? Which assemblies i can use for it?
View ArticleRe: Is it allowed to convert pdf documents into rtf using Adobe SDK
A desktop application can use the Acrobat SDK to convert PDFs to RTF via C#, yes. You would need to have the full Adobe Acrobat installed alongside your own application - which is why it has to be on...
View ArticleRe: Is it allowed to convert pdf documents into rtf using Adobe SDK
which is why it has to be on the desktop and not a server.I didn't quite understand your statement. Could you, please, explain, why I can't use it only on the desktop and not a server? And, could you...
View ArticleRe: Is it allowed to convert pdf documents into rtf using Adobe SDK
Because the Acrobat EULA specifically forbids use of Acrobat on a server.
View ArticleAcrobat XI Std and Pro are loading my plugins on certain machines
I have developed a custom Acrobat plugin using Adobe Acrobat SDK 10.0 and it is not loading on certain machines from Dell. Acrobat Std was preloaded by Dell. We have tried installing Acrobat XI Pro and...
View ArticleRe: Acrobat XI Std and Pro are loading my plugins on certain machines
The important piece of info in the list below is that installing a new copy of Acrobat Pro DOES NOT resolve it. That tells me that there is something missing in the OS of the machine - some runtime or...
View ArticleRe: Acrobat XI Std and Pro are loading my plugins on certain machines
I've verified identical installation works on fresh install of Windows 7 and 8. Also checked for missing DLL dependencies in EventViewer and with Sxstrace.
View ArticleRe: Acrobat XI Std and Pro are loading my plugins on certain machines
Worth running DEPENDS.EXE. From memory, as well as picking up DLL dependencies, it shows DLL loads. Since your API is a DLL, you should see it load.
View ArticleRe: Acrobat XI Std and Pro are loading my plugins on certain machines
I also ran depends, just system (KERNEL32.DLL, USER32.DLL) and Microsoft Visual Studio 10 run-time (MSVCP100.DLL, MSVCR100.DLL -- both are available as run-time installer was called by my installer)
View ArticleRe: Acrobat XI Std and Pro are loading my plugins on certain machines
You probably need to have your installer install the MSVC runtime DLLs along with your plug-in. (I'm not able to parse the sentence "both are available as run-time installer was called by my...
View ArticleRe: Acrobat XI Std and Pro are loading my plugins on certain machines
The correct run-time files were installed by calling the Microsoft installer from our own install. Verified that run-time are installed in Control Panel and with sxstrace and depends
View ArticleRe: how to use acropdf even if addon is deactivated in InternetExplorer
No, I am talking about the Acrobat SDK-Sample AcrobatActiveXVB. This is VB .Net and I use Visual Studio 2012 to debug it. Thomas
View ArticleThe plugin is gets called when we open any pdf document in internet explorer
Hello, I have written plug-in( .api) for our use. But it's get called when ever I open any pdf document in internet explorer.I am using Adobe Acrobat 10. What could be the problem. I don't want to call...
View ArticleRe: The plugin is gets called when we open any pdf document in internet explorer
What specific methods of your plug-in are being called? The plug-in will always load but you can stop most methods of being called.
View ArticleAcroExch.AVDoc.FindText(), Acrobat XI
Code fromChapter 16 Scripting Quicktest Professional Page 25, Dani Vainstein FindText(): Finds the specified text, but doesn't scrolls so that it is visible, and doesn't highlights it Dim AcroApp,...
View ArticleRe: The plugin is gets called when we open any pdf document in internet explorer
Thanks for the response.I have written some function in PluginInit. I don't want to call the method when acrobat launches in IE. It should call only when acrobat launches in Desktop. How can I call the...
View ArticleRe: The plugin is gets called when we open any pdf document in internet explorer
Since Acrobat is being loaded by IE when a PDF is viewed, that also means that your plugin will be invoked just as it is in stand-alone. You can test if you are being called from an external...
View Article