AddField
Find the syntax, use, parameters, return values, and an example for the AddField macro command in Connexion client.
| Syntax | BOOL = CS.AddField (nInstance, sData) |
|---|---|
| Use to | Add a variable field in the current record in correct tag order and specify the order of its appearance among other fields with the same tag number. |
| Parameters |
|
| 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.AddField 2, “245 Second 245 field” If CS.AddField(3, “245 Third 245 field”) = True Then |
| What this example does |
|
