05-21-2005, 08:54 AM
There is a bug in QM. It cannot pass arrays of structures. You can pass two array of strings instead.
C#:
public bool RunJob (string jobId, ref string[] pNames, ref string[] pValues, ...
QM:
ARRAY(BSTR) pNames.create(0)
ARRAY(BSTR) pValues.create(0)
successful = jobHandler.RunJob("CP_CAT", pNames, pValues, ...
C#:
public bool RunJob (string jobId, ref string[] pNames, ref string[] pValues, ...
QM:
ARRAY(BSTR) pNames.create(0)
ARRAY(BSTR) pValues.create(0)
successful = jobHandler.RunJob("CP_CAT", pNames, pValues, ...
