Passa al contenuto principale
Supporto OCLC

PrintList

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

Same as using the menu command File > Print List.
Parameters Nessuno
Commenti Uses your default printer in Windows.
Return values TRUE if the action is successful, or FALSE if not.
Esempio 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.