<CFOBJECT TYPE="COM"
ACTION="action"
CLASS="program_ID"
NAME="text"
CONTEXT="context"
SERVER="server_name">
ACTION
Required. One of the following:
- Create -- Use Create to instantiate a COM object (typically a DLL) prior to invoking methods or properties.
- Connect -- Use Connect to connect to a COM object (typically an EXE) that is already running on the server specified in SERVER.
CLASS
Required. Enter the component ProgID for the object you want to invoke.
NAME
Required. Enter a name for the object.
CONTEXT
Optional. InProc, Local, or Remote. Uses Registry setting when not specified.
SERVER
Required when CONTEXT="Remote". Enter a valid server name using UNC (Universal Naming Convention) or DNS (Domain Name Server) conventions, in one of the following forms:
SERVER="\\lanserver"
SERVER="lanserver"
SERVER="http://www.servername.com"
SERVER="www.servername.com"
SERVER="127.0.0.1"
|