Skip to main content
OCLC Support

UncontrolAll

Find the syntax, use, parameters, return values, and an example for the UncontrolAll macro command in Connexion client.
Syntax CS.UncontrolAll
Use to Uncontrol all headings in the current record.

Same as using the command Edit > Control Headings > Uncontrol All.
Parameters None
Comment You must be logged on to run this macro.
Return values None
Example Sub Main()
 

     Dim CS As Object
     Set CS = GetObject(,“Connex.Client”)

     If CS.IsOnline = False Then
          CS.Logon ““, ““, ““
     End If

     CS.Search “WC”, “#1”

     CS.UncontrolAll
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 record number 1.
  • Places the cursor in the sixth column of the eighth row.
  • Uncontrols all controlled headings in record number 1.