I have been attempting to load, edit and save Adobe Acrobat PDF fields and I have been running into problems loading Adobe Acrobat Fields. Currently I am using C#/Windows Forms and WebSupergoo's ABCpdf library specfically the WebSupergoo.ABCpdf8.Doc.Read() function.
The code runs fine but when all is said and done the Doc object has no fields in the instanced object.
Presumably they should be in Doc.Form.Fields
The code is quite simply
Doc theDoc = new Doc();
theDoc.Read("Test.pdf");
Then I should be able to access fields by
theDoc.Form["FieldName"]
WebSupergoo says that ABCpdf8 should support Adobe Acrobat 9.0 files.
What am I doing wrong here?
Thanks for any help in advance.