Specifications
OLE reference
162
Glink: API reference manual Gallagher & Robertson
VBA Example:
GL.ShowText("Hello world!")
The Transmit method
Sends data to the host with a terminator
Transmit ( Data )
Data: String Data to send to the host
Return value: none
This method sends a sting of data to the host without local emulation but with a
terminator. The terminator will depend on the emulation state and the
communications interface. Generally in FORMS or BLOCK modes, the
terminator will be ETX, otherwise it will be CR.
VBA Example:
Dim S As String
S = GL.Receive(100, String(1, Chr(03)), 1000, True)
If InStrB(S, "MODEL") > 0 Then
GL.Transmit ("VIP7804")
End If