ExportAppend
Find the syntax, use, parameters, return values, and an example for the ExportAppend macro command in Connexion client.
Syntax | BOOL = CS.ExportAppend (sName) |
---|---|
Use to | Export record(s) to a destination file specified by its name as pre-defined in Tools > Options > Export.
Required: The export destination file must be pre-defined in Tools > Options > Export or the macro will fail. Defining the file destination does not create the file. The file is created the first time you export records to it. |
Parameters | For sName, enter the name of the export destination file that you assigned when you created the destination. Enclose the name in quotation marks ("). |
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object CS.ExportAppend “Data” |
What this example does |
|