<All you have to do now is to use this knowledge when you access the document data via the JSObject.>
I'm sorry for being so dense. I tried creating an xfa object but was unsuccessful.
Dim jso as Object, xfaObj as Object
Debug.print jso.dynamicXFAForm 'returned True
jso.exportXFAData ("C:\PDFForms\IDS_XFA.xdp") 'created this XDP file (top part shown here)...
...
Set jso = PDDoc.GetJSObject 'No error
Set xfaObj = jso.xfa 'No error
at this point, I couldn't figure out how to access the fields in the form...
xfaObj.form.form1("us-ids[0].#pageSet[0].IDSMaster[0].idshead[0].appNumber[0]").rawValue = "ABC" '[threw error "Object doesn't support this property or method".]
Can you guide me on how to set the xfa object and then I might be able to figure out the rest?
Than you!