I was wondering how to link my Live Cycle Designer to Excel, so that the user will input the information into the PDF, and excel will be my database. Let me know if you need more information on what I am trying to accomplish. Thanks!
Views
Replies
Total Likes
You can export data from an interactive PDF as .xml which can be imported into Excel.
Designer has an exportData method that can be attached to an event such as a button click.
// form1.page1.exportBtn::click - (JavaScript, client)
xfa.host.exportData("",0);
Steve
Views
Replies
Total Likes
Is there a way to export it directly to excel?
Views
Replies
Total Likes
If Excel is using an OLEDB-compatible data store you could use an OLEDB data connection from a form to insert data into the database.
If Excel is not sitting on a database you may be able to use scripting tools (such as Windows Script Host objects) and Excel automation features to read and import the XML exported from the PDF.
I have seen Acrobat automation scripts used in the past but I am not sure if the current Acrobat security model allows such functions.
Steve
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies