IsOnline
Find the syntax, use, parameters, return values, and an example for the IsOnline macro command in Connexion client.
Syntax | BOOL = CS.IsOnline |
---|---|
Use to | Determine whether you are logged on. |
Parameters | None |
Return values | True if logged on; otherwise, FALSE. |
Example | Sub Main() Dim CS As Object Set CS = GetObject(,“Connex.Client”) If CS.IsOnline = True Then MsgBox “You are currently logged on” Else MsgBox “You are not currently logged on” End If End Sub |
What this example does |
|