THe best course of action is to use the facilities provided by your application; PCOMMS in this case.
PCOMMS provides a method to return the number of active terminal windows natively. For example:
Sub GetTermCount()
Dim autECLConnList as Object
On Error Goto Catch
Set autECLConnList = CreateObject("PCOMM.autECLConnList")
autECLConnList.Refresh
MsgBox "There are " & cStr(autECLConnList.Count) & " terminal sessions running...", vbinformation
Finally:
Set autECLConnList = Nothing
Exit sub
Catch:
MsgBox "ERROR: " & Err.Description & vbCrLf & "Unable to get count of terminal sessions", vbExclamation, "Error"
Resume Finally
End Sub
Written freehand and untested - PCOMMS not available on an Android tablet
Bookmarks