DeriveNewRecord
Find the syntax, use, parameters, return values, and an example for the DeriveNewRecord macro command in Connexion client.
Syntax | BOOL = CS.DeriveNewRecord (bFixedField) |
---|---|
Use to | Derive a new record from the current record. Same as using the menu command Edit > Derive > New WorldCat Record. |
Parameters | For bFixedField, enter True if you want to transfer the fixed field to the new record, or enter False if not.
Nota:
|
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object CS.Search “WC”, “#1” If CS.DeriveNewRecord(True) = True Then |
What this example does |
|