Skip to main content
OCLC Support

PrintList

Find the syntax, use, parameters, return values, and an example for the PrintList macro command in Connexion client.
Syntax BOOL = CS.PrintList
Use to Print the current (topmost) list.

Same as using the menu command File > Print List.
Parameters None
Comments Uses your default printer in Windows.
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 “WC”, “gon,wi,th,w”

     If CS.PrintList() = True Then
          MsgBox “List printed OK”
     End If

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 WorldCat for Gone with the Wind using a derived title search.
  • Prints the search results list. If the list prints successfully, returns a message: List printed OK.