SetFieldLine
Find the syntax, use, parameters, return values, and an example for the SetFieldLine macro command in Connexion client.
Syntax | BOOL = CS.SetFieldLine (nLineNumber, sData) |
---|---|
Use to | Add a field or add data to an existing field in a field position specified by line number, with each field representing one line. |
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.SetFieldLine “1”, “500 New first line If CS.SetFieldLine(10, “500 New 10th line”) = True Then If CS.SetFieldLine(10, “500 New last line in record”) = True Then |
What this example does |
|