Lock
Find the syntax, use, parameters, return values, and an example for the Lock macro command in Connexion client.
| Syntax | BOOL = CS.Lock |
|---|---|
| Use to | Lock a record. Same as using the Action > Lock WorldCat Record menu command. |
| Parameters | None |
| Comments | You must be logged on to run this macro. |
| Return values | TRUE if the action is successful, or FALSE if not. |
| Example | Sub Main()
Dim CS As Object CS.Search “WC”, “#1” bResult = CS.Lock If bResult = True Then |
| What this example does |
|
