Specifications

OLE reference
Gallagher & Robertson Glink: API reference manual 145
Glink.Auto programmers reference
Events
The following events are available:
Event Description
OnConnect
Connection event
OnDisconnect
Disconnection event
OnTurn
Turn or new screen received
OnData
Communications data received
OnPattern
User defined pattern received
Glink's Automation events allow you to supply callback functions which will be
called by Glink when the specified event occurs.
The OnConnect Event
OnConnect()
This event occurs when Glink successfully connects.
VBA Example:
Private Sub Gl_OnConnect()
List1.AddItem ("OnConnect received")
End Sub