sReserved | (String) Reserved. An empty string ("") must be here. |
---|---|
oAxObject | (Object) Reference to ActiveX object. |
sAxMethod | (String) Name of called method. |
arglist | (Variant) A variable number of parameters follows. These parameters are passed to the method called in the ActiveX object.
The parameters are are passed as input parameters value. If there is PmArray among these parameters then this array is automatically converted into VBArray. |
var oApp = pMe.Pm("../AtouchApp").Acx;
var mInfo = Pm.CreatePmMap();
mInfo.ParValue = Pm.CreatePmArray(1, 5);
var nState = Pm.CallAxMethod("", oApp, "DBGetInfo", nWID, mInfo);
Pm.Debug("return INFO: " + mInfo.ParValue);