Hi,
I hope anybody can help me to solve this problem.
Tjis is my (working) code:
Dim oXMLDoc As MSXML2.DOMDocument
Set oXMLDoc = New MSXML2.DOMDocument
oXMLDoc.Load ("myXMLFile...")
SBO_application.LoadBatchActions (oXMLDoc.xml)
Set frm = SBO_application.Forms.Item("FormUID")
frm.Visible = True
So far this worked fine.
After I changed the form Title in the xml-file (I used XMLSpy) or the FormUID or deleted an item a.s.o. it didn't work anymore. So i catched the result (errors or warnings)of LoadBatchActions with SBO_application.GetLastBatchResults. The error is:
<?xml version="1.0" encoding="UTF-16"?><result><errors><error code="-7040" descr="XML - Cannot load from string"/><error descr="Could not recover from previous errors"/></errors></result>
Do someone knows what that means.
Strange is that when I edit the srf- file in a text-editor then it works.??