CloseRecord
Find the syntax, use, parameters, return values, and an example for the CloseRecord macro command in Connexion client.
Syntax | CS.CloseRecord (bSaveRecord) |
---|---|
Use to | Close a record. |
Parameters | For bSaveRecord, enter true to save the record or false to close without saving. |
Comments | You must enter the bSaveRecord parameter (no default value is provided). If you do not, you get an error message. |
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” CS.CloseRecord TrueEnd Sub |
What this example does |
|