Avatar

Correct answer by
Level 2

Thank you for pointing me in the right direction... A little elbow grease, coffee, patience, and did I mention patience and the following works flawlessly

//Set to Mouse Up of Export Button:

xfa.host.exportData("",0)

//Set to Import Form button of other Forms:

xfa.host.importData()

//Set to Import Form Form:Ready to check the different sections "Check Boxes" to see if that section is suppose to be visible and makes it visible:

if(Button_DelDep.rawValue == 1)

          {

          Del_Dep.presence = "visible";

          }

if(Button_DelArr.rawValue == 1)

          {

          Del_Arr.presence = "visible";

          }

if(Button_Div.rawValue == 1)

          {

          Div.presence = "visible";

          }

if(Button_MADiv.rawValue == 1)

          {

          MADiv.presence = "visible";

          }

if(Button_DelDepXD.rawValue == 1)

          {

          Del_DepXD.presence = "visible";

          }

if(Button_Other.rawValue == 1)

          {

          Other.presence = "visible";

          }

View solution in original post