Browse Authority Expanded
Find the syntax, use, parameters, return values, and an example for the Browse Authority Expanded macro command in Connexion client.
Syntax | BOOL = CS.BrowseAuthorityExpanded (nRecOffset, sRootIndex, sRootTerm, sExpanded Term) |
---|---|
Use to | Options:
|
Parameters |
|
Comments | You must be logged on to run this macro. |
Return values | TRUE if the expanded browse 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.Browse “AF”, “sj”, ”jones” CS.BrowseAuthorityExpanded “4”, ““, ““, “bible” End Sub |
What this example does |
|