GetListItem
Find the syntax, use, parameters, return values, and an example for the GetListItem macro command in Connexion client.
Syntax | BOOL = CS.GetListItem (nListIdx) |
---|---|
Use to | Open a record from the currently displayed list by specifying its order in the list by number. |
Parameters | For nListIdx, enter the number that represents the order of the record that you want to open in the list. |
Comments | The first record on the list is 1 (1-based index). |
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then If CS.Search(“WC”, “gon,wi,th,w”) > 0 Then |
What this example does |
|