Re: How can a line of code be separated into multiple lines?

2019-05-18 Thread Chip Scheide via 4D_Tech
selection to array([table]field1;$Array1;\ [table]field2;$Array2;\ [table]field3;$Array3;\ [table]field4;$Array4) you use the \ character -- but you need to be careful where you use it. you need to use it between 'operators'. after a math operation (+-/*), after a semicolon (is generally the

Re: How can a line of code be separated into multiple lines?

2019-05-18 Thread Charles Miller via 4D_Tech
Put \ at end of line Regards Chuck On Sat, May 18, 2019 at 3:11 PM Stephen J. Orth via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Chris, > > Use the backslash character (\)... > > > Steve > > * > Stephen J. Orth > The Aquila Group, Inc.

RE: How can a line of code be separated into multiple lines?

2019-05-18 Thread Stephen J. Orth via 4D_Tech
Chris, Use the backslash character (\)... Steve * Stephen J. Orth The Aquila Group, Inc. Office: (608) 834-9213 P.O. Box 690 Mobile: (608) 347-6447 Sun

How can a line of code be separated into multiple lines?

2019-05-18 Thread Chris Belanger via 4D_Tech
I know this is done, but I have never used it and cannot find the answer myself: How can a line of code be separated into two, and still be interpreted by 4D as one line? ex. (obviously not practical) $all:=$1 +$2 +$3 equivalent: ($all:=$1+$2+$3 thanks, Chris