How do I deal with incoming PDFs that appear to have more than one field with 
the same name?
When I open the doc with Acrobat, I see fields "EffectiveDate#0" and 
"EffectiveDate#1".
I am trying to manipulate the position/width/height of the two fields, #0 and 
#1, independently.

But when I use PDFBox, 
  PDField pdField0 = pdAcroForm.getField("EffectiveDate");
I get an instance and I can get/set the field value.

But...
  PDField pdField0 = pdAcroForm.getField("EffectiveDate#0");
returns NULL.

I am not allowed to change the names of the fields.  Otherwise, I would change 
them to EffectiveDate_0 and EffectiveDate_1.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to