The oMSG Object |
Top Previous Next |
The oMSG object is a global Script Object which is available for your Commando Scripts to use when they are running. It is an instantiation of an internal Commando HL7Message object. You can create your own new Commando HL7Message object by calling oUTILITIES.NewMessageObject().
Example:
'Declare a variable Dim myNewMsg 'Call the oUTILITIES CommandoScript object Set myNewMsg = oUTILITIES.NewMessageObject() '...Code '...Code '...Code '...Do Cleanup Set myNewMsg = Nothing
|