'This code goes after the code that creates XML document representing dynTTEl
'and before calling the method taking the TABLE-HANDLE parameter . . . ‘Create a System.Array containing dynTTEl dynTTArray = System.Array.CreateInstance(dynTTEl.GetType, 1) dynTTArray(0) = dynTTEl ‘Run DynTT.p wsObj.DynTT(dynTTArray) ' Process the output TABLE-HANDLE from DynTT.p dynTTEl = dynTTArray(dynTTArray.Length - 1) 'Continue with the rest of the code for processing the output . . . |