Doorgaan naar de website
OCLC Support

GetPrevious100Records

Find the syntax, use, parameters, return values, and an example for the GetPrevious100Records macro command in Connexion client.
Syntax BOOL = CS.GetPrevious100Records
Use to Open the previous list of 100 records resulting from a search of:
  • Online bibliographic save file
  • Authority file
  • Online constant data file

     Note: Search results lists from these online files display 100 records at a time.

Same as using the View > Navigate Records and Lists > Previous 100 Records menu command.
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

     CS.GetPrevious100Records
End Sub

What this example does
  • Logs on to Connexion if not already logged on, using the default authorization and password you selected in Tools > Options > Authorizations tab.
  • Searches the Authority File for the heading William. (The search retrieves more than 100 records.)
  • Gets the next (second set of) 100 records.
  • Gets the previous 100 records (goes back to the first set).