RE: Help please - Compiling

2018-08-17 Thread lists via 4D_Tech
Hi Chip, You declare the longint var as "$sze", then use "$Size" which is undeclared. As far as the error on the sort array, the ascending operator is optional and is the default value anyway, omitting it does compile without an issue. However, if you need the sort to be Descending, this

Re: Help please - Compiling

2018-08-17 Thread Dave Nasralla via 4D_Tech
Hi Chip, I"m using v17HF1 and it does not compile on the last sort. This does: C_POINTER($1;$Handle) C_TEXT($formula) C_LONGINT($i;$2;$Sort_Column;$3;$Direction;$Sze) $Handle:=$1 $Direction:=$2 $Sort_Column:=$3 `errutl_Start $Sze:=Size of array($Handle->) C_Pointer($a;$b;$c) If

Re: Help please - Compiling

2018-08-17 Thread Koen Van Hooreweghe via 4D_Tech
Hi Chip, Typo? $Sze:=Size of array($Handle->) If ($Size<=12) $Sze is defined, $Size not. HTH Koen > Op 17 aug. 2018, om 17:18 heeft Chip Scheide via 4D_Tech > <4d_tech@lists.4d.com> het volgende geschreven: > > $Sze:=Size of array($Handle->) > > If ($Size<=12)