Installation manual
MAIN CONTROL OBJECT
37
3
3.3 EVENTS
EVENT ALIVEEVENT
PURPOSE
Alive answer.
DESCRIPTION
This event notifies the container when a base station answers to an alive command
sent from the application. The base station answers with a string having the following
format:
“DL STARGATE x.y” where x.y is the base station application version.
IDL
[id(3), helpstring("method AliveEvent")] HRESULT AliveEvent(short SatID, BSTR
Info);
INPUT PARAMETERS
None
OUTPUT VALUE
SatID as short with the ID of the base station sending the alive answer
Info as String containing information about the base station.
EXAMPLE
...
Private Sub OCX_AliveEvent(ByVal SatID As Integer, ByVal Info
As String)
MsgBox Info, vbExclamation, "Base station:" & CStr(SatID)
End Sub...