Page History
...
The meaning of the return value depends on the service.
Parameters
Parameter | Description |
---|---|
Object | The target COM object. Required. |
Service | The action to take against the COM object. Required. |
Name | Identifies the service's target, such as a property name. Optional. Some services require this parameter, others do not. See service topics for details. |
Param1 - Param16 | Optional parameters for COM methods and properties. |
Remarks
The SRP_Com method was developed to meet a need for accessing COM components from within versions of OI that do not yet have that functionality built in.
...
Much like the Utility function in OpenInsight, the SRP_Com function provides multiple services which are identified in the Service parameter. The services are:
Service | Description |
---|---|
ADDPARAM | Adds a parameter to an advanced method call for a COM object. |
BEGINCALL | Begins an advanced method call for a COM object. |
ENDCALL | Executes an advanced method call for a COM object. |
CREATE | Instantiates a COM object. |
RELEASE | Releases a previously instantiated COM object from memory. |
GET | Gets a COM object's property value. |
SET | Sets a COM object's property value. |
CALL | Executes a COM object's method. |
ERROR | Returns the latest COM error. |
HANDLES | Gets all open COM object handles. |
Click on the service names above to read more details. Continue below for an explanation of the other parameters.
...