Doorgaan naar de website
OCLC Support

InsertFromCitedRecord

Find the syntax, use, parameters, return values, and an example for the InsertFromCitedRecord macro command in Connexion client.
Syntax BOOL = CS.InsertFromCitedRecord
Use to Insert data from a cited record that has a bibliographic connection to the record you are editing.

Same as using the Edit > Insert from Cited Record menu command. See Build fields that cite related records (760 - 787) for more information.
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”)

     bReturn = CS.InsertFromCitedRecor
     If bReturn = true Then
          MsgBox “Insert From Cited Record succeeded”
     Else
          MsgBox “Insert From Cited Record failed !!!”
     End If
End Sub

What this example does
  • Inserts data from the record identified by OCLC control number in the field (760 - 787, 800, 810, 811, or 830) that you created.
  • If the action is successful, returns the message: Insert From Cited Record succeeded. If not, returns the message: Insert From Cited Record failed !!!