Re: Saving form field data to sql server Database. Point me in the right...
I am doing pretty much the same thing. The first challenge is cross-referencing the form fields with the database table column names.Since Adobe did not provide a "tag" property for a form field, you...
View ArticleRe: Form field tabOrder property
I'd go further and say that the alphabetical order should be considered as just an accident, not to be relied upon as (from memory) it is not documented.
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
Why isn’t the field name the same as the column name?
View ArticleRe: Form field tabOrder property
getNth returns them in Tab Order – for any non-structured form. If your form is structured (meaning PDF structural elements), then those would dictate Tab Order.
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
That's one approach. In my case I also have to map the fields and columns to XML nodes and attribute names that are already established....so I need a reference table anyway.
View ArticleRe: Form field tabOrder property
getNth returns them in Tab Order – for any non-structured form. It's never has for me, but interestingly, when you export to a data file using "Merge data files into spreadsheet", it is...
View ArticleRe: Acrobat sdk, not able to run samples, getting a message, unable to start...
Getting this error when i try to run sdk samples. how to fix this.
View ArticleRe: Acrobat sdk, not able to run samples, getting a message, unable to start...
Copy the plugin into the plugins folder of Acrobat and restart Acrobat.
View ArticleRe: Acrobat sdk, not able to run samples, getting a message, unable to start...
And you do not "run" plug-ins. You add them to Acrobat, then use the services they add to the Acrobat UI.
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
Thanks for all the responses. I'm primarily a asp.net programmer and sql server developer. I'm all for and intend to parse at the server level.The part in this equation I'm drawing blanks on is how...
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
What is submitted (in HTML, FDF or XFDF format -- don't submit PDF files unless you want to make things hard for yourself or include signatures - which makes it hard), has the PDF field names. I think...
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
Converting to HTML was just a thought I had but only as a last resort. I also stand corrected on the save Issue. I want to "Submit" a form and then save its field values. I think my problem is I...
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
PDF forms are submitted to a URL, just the same thing as HTML forms are submitted to a URL. It's an action you put on a button. With HTML forms you can submit only in HTML format. You can also do this...
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
Ah Ha. Thanks Test Screen. I've looked into FDF and XFDX and will go with the XFDF format. I've already exported a pdf into a XFDF file and looked at its contents with a text editor. I can say I...
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
Not sure I completely follow the question, but you can make a master form with blank fields and import any XFDF. Indeed, many web solutions would store the XFDF as a BLOB and deliver it for filling the...
View ArticlePrint PDF Silently
I am looking for a straight answers as to if it is possible to print a PDF silently, perhaps using Adobe SDK? The criteria are: Print from Windows 7,Using .Net/ C#.No GhostScriptNo Adobe Reader...
View ArticleRe: Print PDF Silently
Are you doing this on a server or desktop clients? Will the machine have Acrobat or Reader installed on it?
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
There are several routes a client may take to get to the form. One route is to just open the blank form, fill it in submit, save or print. This is the easy process. The site is freight rating and...
View ArticleRe: Saving form field data to sql server Database. Point me in the right...
If you find browsers an issue with HTML forms you are perhaps unaware of the much more serious nightmare awaiting with PDF forms. Many browsers have their own PDF viewers now, many of which do not work...
View ArticleRe: Print PDF Silently
This will be a desktop application that retrieves the PDF from a network share, saves it to a directory on the users PC and send it to print without having to notify the user. Thank you for your quick...
View Article