Started
This indicates whether the emulator window is started. The value is True if the window is open; otherwise, it is False. Started is a Boolean data type and is read-only. The following example shows this property.
DIM Hand as Long
DIM Obj as Object
Set Obj = CreateObject("PCOMMPCOMM.autECLWinMetrics")
' Initialize the connection
Obj.SetConnectionByName("A")
' This code segment checks to see if A is started.
' The results are sent to a text box called Result.
If Obj.Started = False Then
Result.Text = "No"
Else
Result.Text = "Yes"
End If