• the function is unavailable,raise error

    By zh leo 2 decades ago

    the function is unavailable,raise error:

    press Set View Master,then open a form,i press the Preview button,then raise a error messagebox:

    DXL importer operation failed.



    Please fix this bug!



    Thanks!



    Leo

    • a dirty workaround

      By AliBaba Friends 1 decade ago

      Hey,

      I faced the same problem and started debbuging the code, found the line which causes the error and "corrected" it to get it work.



      In the Agent (1. View Manager | …) go to the sub setViewColumnAttributes, find the lines


          While  numChildren &gt; 0<br/>
              Set nextChild = child.NextSibling    <br/>
      



      and modify them like this:


          While  numChildren &gt; 0<br/>
              If numChildren &gt; 1 Then<br/>
                  Set nextChild = child.NextSibling    <br/>
              End If<br/>
      



      This solved the problem for me!