The Transmit method is used to send the current Ispec buffer to the application server for processing.
Syntax
Object.Transmit
<Object> is an expression that evaluates to an instance of a Component Enabler connection object.
Returns
A response code indicating the result of the transmit.
Example
LINCAPP![CUSTNO] = 1234 LINCAPP![MAINT] = "INQ" LINCAPP.Transmit MsgBox LINCAPP![CUSTNAME]
This example sets the field called CUSTNO on the current Ispec to 1234 and the Maint field to INQ. It then sends the Ispec buffer to the host for processing. The current version of Component Enabler is asynchronous, which means that the client code gets control back when the host system has responded. It then displays the contents of the field CUSTNAME in a message box.