WindowCount
Find the syntax, use, parameters, return values, and an example for the WindowCount macro command in Connexion client.
Syntax | nCount = CS.WindowCount |
---|---|
Use to | Give the number of open windows. |
Parameters | None |
Comments | Counts only record and list windows only. |
Return values | An integer representing the number of open windows. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then MsgBox CStr(CS.WindowCount) + “ open windows” |
What this example does |
|