SetField
Find the syntax, use, parameters, return values, and an example for the SetField macro command in Connexion client.
Syntax | BOOL = CS.SetField (nInstance, sData) |
---|---|
Use to | Add a field or add data to an existing field specified by tag number and, in the case of repeated variable fields, by the order of appearance among the 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.SetField 1, “245 New 245 field” If CS.SetField(2, “700 New second occurrence of 700 field”) = True Then |
What this example does |
|