GetNext100Records
Find the syntax, use, parameters, return values, and an example for the GetNext100Records macro command in Connexion client.
Syntax | BOOL = CS.GetNext100Records |
---|---|
Use to | Open the next list of 100 records resulting from a search of:
|
Parameters | None |
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main() Dim CS As Object Set CS = GetObject(“Connex.Client”) If CS.IsOnline = False Then CS.Logon ““, ““, ““ End If CS.Search “AF”, “pn:William” CS.GetNext100Records End Sub |
What this example does |
|