importXFAData stopped working with latest Acrobat Pro DC update
Using PDF XFA forms created with Adobe LiveCycle Designer ES4. Data stored in a Microsoft Access database is converted to an XML file and then imported into a blank PDF XFA form using importXFAData. My workgroup has been using this feature for over three years with huge success/satisfaction. With the recent update, the xml import stopped working leaving the PDF form fields blank. Any work around or update planned?
Adobe Acrobat Pro DC Version 2020.013.20074
Microsoft Access 2016 with VBA Version 7.1.1108
VB code clip:
Dim AcroApp As Object
Dim theForm As Object
Dim jso As Object
Set AcroApp = CreateObject("AcroExch.App")
Set theForm = CreateObject("AcroExch.PDDoc")
theForm.Open myBlank 'open the blank PDF form with path=myBlank
set jso = theForm.GetJSObject
jso.importXFAData myFile 'import the xml file located at path=myFile