Re: Does AcrobatSDK have function that adding headers and footers?
Look at using AVCommands
View ArticleRe: How to Use ActiveX Control in Acrobat Plugin?
It probably isn’t impossible, but juggling two event driven APIs may be an interesting challenge. Be aware of thread limitations in plugins:1. If you block the main thread you block all of Acrobat (so...
View ArticleIs there a way to create a dialog box to choose a file instead of a folder?
Trying to select a file and get the ASPathName of the file. There was a sample in PDF Binder to do so but it only allow you to choose folder instead of a file with AVAppChooseFolderDialog method.
View ArticleRe: Is there a way to create a dialog box to choose a file instead of a folder?
You can use AVAppOpenDialog
View ArticleProgramming interface for Adobe Reader
Can we configure a certificate to adobe reader for signing purpose programatically ? (perhaps using Windows batch file, shell-script or official library available from adobe)The certificate needs to be...
View ArticleRe: Programming interface for Adobe Reader
The Acrobat SDK describes all programming interfaces in Acrobat, and a few in Reader too. Neither one has an interface for this, so far as I know.
View ArticleRe: Programming interface for Adobe Reader
What about just adding it to the Windows Certificate Store, where Reader can find it?
View ArticleRe: Programming interface for Adobe Reader
The reader is able to find it i.e. the certificate is already installed in cert-store (windows) or keychain (macOS). In order to configure the reder, below are the manual steps that we follow: 1. Go to...
View ArticleRe: Programming interface for Adobe Reader
There is a tool for admins for doing this – see https://www.adobe.com/devnet-docs/acrobatetk/
View ArticleAdding a signature causes a 'Link Annotation Modified'
Hello, If I have a document which pages are indexed and I add 2 DidSig signature on an indexed page, I get a 'Annotation Modified' on the Signature panel (left side):The signature was newly added, no...
View ArticleRe: Adding a signature causes a 'Link Annotation Modified'
Can you post the PDF in question so we can examine it?
View ArticleRe: Adding a signature causes a 'Link Annotation Modified'
Sure, here is a simple document showing this behavior: Word document with table of content, converted to PDF with Acrobat Pro DC on Windows 10, then signed with 'iSign Solutions' Sign-it plug-in...
View ArticleIs it possible to save a pdf with Acrobat Pro from commandLine?
I´m trying to write a script, that search for a PDF File and saved in another File.
View ArticleRe: Is it possible to save a pdf with Acrobat Pro from commandLine?
What you mean with "saved in another file" ?
View ArticleRe: Adding a signature causes a 'Link Annotation Modified'
Since the first signature is an approval signature and not a certifying signature, we warn viewers that the document has been modified and why. This is a GOOD THING… If you don’t want this, then use...
View ArticleHow to handle double click on annotation
Hi! If we want to handle simple click , we can do Handle mouse clicks in the annotation by using the AVAnnotHandlerDoClickProc callback method.But if we want to handle double-click , what callback...
View ArticleRe: How to download SDK documentation?
Hi All, I am sorry for the delayed response, on the DC SDK hub page, all the SDK links of Acrobat are working fine now, please check and let us know if you experience any issue.The Acrobat SDK...
View ArticleRe: Add bookmarks to pdf file using Excel VBA
Hello ReinhardF, A few years later, but still people are searching for ways to make bookmarks in e tree like fasion using VBA.Unfortunally the file you mentioned,...
View ArticleRe: Adding a signature causes a 'Link Annotation Modified'
Thanks for looking into it. Makes sense, just wanted to know if this is the expected behavior.Actual if I pre-populate the document with all signatures before signing, no modification is showen after...
View ArticleFill and Sign and .net
I am writing a .NET program to allow a user to open a partially prepopulated form and finish filling out the paperwork while in the field and then have the program save the pdf and update a database to...
View ArticleAPI to export/convert pdf to excel
I have hundreds of pdf's which need to be converted to excel. I wanted to know whether there is an API to automate this conversion of pdf to excel.I can't manually export the pdf's to excel.
View ArticleRe: Acrobat Distiller 2017 - PDF to Word conversion produces unreadable text
Hi, completely off topic but is there an api to convert pdf to excel. I have hundreds of pdf's which need to be converted to excel and I can't do it manually. I have asked the question but no answer...
View ArticleRe: Acrobat Distiller 2017 - PDF to Word conversion produces unreadable text
You can use the Action Wizard of Adobe Acrobat Pro.
View ArticleRe: API to export/convert pdf to excel
Yes, Adobe Acrobat includes such an API. Or you can use the Actions feature of Acrobat to batch convert.
View ArticleHow to check if acrobat is installed in .NET
I have a program I am writing that has parts that interact with acrobat. When a user that does not have acrobat is running the program on their machine it crashes when they try to access a form that...
View ArticleRe: How to check if acrobat is installed in .NET
It should be possible to detect and recover from failures in .NET, in the way try ... catch is used in JavaScript. Don't know the details.
View ArticleRe: How to check if acrobat is installed in .NET
Hi, Pretty sure they have a try...catch almost exactly the same as JavaScript. Regards Malcolm
View ArticleExcel VBA - unable to attach XLS file to PDF
I have the folowing VBA code that successfully creates two signature fields in PDF and then stops with Object Required error at Set oAttachment = oJS.ImportDataObject(Selected_File). Any ideas how to...
View ArticleRe: Excel VBA - unable to attach XLS file to PDF
You have to specify a name for the data object as the first parameter.
View ArticleRe: Excel VBA - unable to attach XLS file to PDF
I am trying Set oAttachment = oJS.ImportDataObject("Attachment", Selected_File), still generates Object Required error.
View ArticleRe: Excel VBA - unable to attach XLS file to PDF
In my experience, you may have to provide all optional parameters for some func in the JSO to work.
View ArticleRe: Excel VBA - unable to attach XLS file to PDF
Tracing the code I figured out that Selected_File was a string, not an object and now fixed it. Now I am getting Type mismatch error. Hope this is getting me closer to the answer... Karl, in the...
View ArticleRe: Excel VBA - unable to attach XLS file to PDF
In the API reference you will also find the list of parameters. There are three. I am writing this on my phone, so it’s not as straight forward to attach a screenshot. The third parameter is...
View ArticleOptions for controlling the PDF virtual printer programmatically?
My application currently communicates to the PDF virtual printer the target folder using the Windows Registry. Specifically the following location is used:...
View ArticleRe: Options for controlling the PDF virtual printer programmatically?
This method still works, but there are problems in the 32-bit/64-bit bridging that happens automatically in 64-bit Windows. If your app is 32-bit, then it isn't your app that talks to the print driver....
View ArticleHow to create Pdf from image
Hello to everyone! I Have the following problem, I need to create Pdf from image ( doesn't matter jpg, or jpeg) with the help of Adobe Acrobat SDK ( C++), I know that Adobe Acrobat can create pdf from...
View ArticleRe: Convert img to pdf in c++
Maybe you remember which sample is including this example ?
View ArticleRe: How to create Pdf from image
You can do this using the AVConversion APIs in Acrobat – there is a sample in the SDK that shows how do this.
View ArticleRe: How to create Pdf from image
There is one in there too, but I believe it’s called Binder
View ArticleRe: How to create Pdf from image
You can always do a multi-file search ythrough the SDK for “AVConversion”. Also, be sure to read the documentation and not just use the code SAMPLE…
View ArticleRe: Convert img to pdf in c++
Shouldn't be too hard to search for which source codes contain AVConversion. Exclude headers. This should narrow the choice considerably.
View ArticleHow to create Submenu in Acrobat SDK
Hello Team, I need to create a submenu in Acrobat SDK. Please help me to achieve this. bellow is the menu format.menu-----Test Test1 Test2--Test3...
View ArticleRe: How to add sub-menu items in acrobat?
Hello poorthip87, Can you please share your code for creating submenu using Acrobat SDK? It will help to implement same thing in my project. ThanksVijaykumar L S
View ArticleRe: How to add sub-menu items in acrobat?
Please read the AVMenu and AVMenuItem APIs. It is all there.
View ArticleRe: How to add sub-menu items in acrobat?
Hello test screen, i can able to create submenu inside menu.but i cant create menu inside menu. my requirement is to create submenu lke bellow. TestTest1--Test1.1 Test1.2--Test1.1.1...
View ArticleRe: How to create Submenu in Acrobat SDK
Hello Team, I can able to create submenu like View(Menu in Acrobat) |Rotate View(Submenu in Acrobat)bellow code i am using for creating submenuAVMenubar menubar = AVAppGetMenubar ();AVMenu CommandMenu...
View ArticleRe: How to create Submenu in Acrobat SDK
Duplicate post. I already told you what to do.
View Article