|
IsAlive Function
Description Returns True if the given name of ComTL instance is running
Definition
Public Function IsAlive( _
ByVal [ToName] As String _
ByVal [ToExactName] As String _
) As Boolean
Parameters
[ToName] The name of recipient application
[ToExactName] The exact name of recipient application
Remarks Just one of the above parameters should be passed. In case of multi-instance of passed parameter(s) the first found match will be returned.
Example To check if application with ComTL called "test" is running and it's ComTL is initialized:
Dim bRet As Boolean bRet = ComTL.IsAlive("test")
|