Hi All,
I am having a slight issue, and I hope someone can help me resolve this.
I made a PDF form, and I use a button on my Access form to read in the PDF fields into my database.
I saved the value "00300" into the PDF form, under the field name "DOC NO". When I open the PDF form file, I see that 00300 is actually in there.
BUT, when I read in the value into a string, I get "300" instead of "00300".
I used this code to read in the value:
currentPartNum = jso.getField("DOC NO").value
Where currentPartNum is a string and jso is a object.
So, my question:
Is there another field under getField (instead of value) that will give me the full string and not just the number?
Or was I supposed to change a setting in the PDF form so that it thinks the field is a string and not a number?