Re: Create multi array

2017-10-06 Thread stardata.info via 4D_Tech
Thank to all /Ferdinando/ Il 06/10/2017 17:48, 4d_tech-requ...@lists.4d.com ha scritto: Message: 1 Date: Fri, 06 Oct 2017 10:16:04 +0100 From: Jeremy Roussak To: 4D iNug Technical<4d_tech@lists.4d.com> Subject: Re: Create multi array Message-ID:<90d57a97-1192-4856-821f-7685fe7da..

Re: Create multi array

2017-10-06 Thread Arnaud de Montard via 4D_Tech
> Le 6 oct. 2017 à 12:43, Spencer Hinsdale via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > > 1) Use a Two Dimensional Array: Two dimensional array would be my choice too. Using EXECUTE FORMULA to "declare" a variable seems ugly, especially in compiled environment… > The Docs call them R

Re: Create multi array

2017-10-06 Thread Spencer Hinsdale via 4D_Tech
1) Use a Two Dimensional Array: http://doc.4d.com/4Dv16/4D/16.2/Two-dimensional-Arrays.300-3433911.en.html 2) Decide if your arrays are Rows or Columns. The Docs call them Rows. If you decide your arrays are Columns, then you must REMEMBER the Docs need "translation" anytime you refer to them

AW: Create multi array

2017-10-06 Thread Flury Olivier via 4D_Tech
oussak via 4D_Tech Gesendet: Freitag, 6. Oktober 2017 11:16 An: 4D iNug Technical <4d_tech@lists.4d.com> Cc: Jeremy Roussak Betreff: Re: Create multi array EXECUTE FORMULA should do the trick. For ($i;1;17) $s:="ARRAY REAL(aANA_"+String($i)+";0)" EXECUTE

Re: Create multi array

2017-10-06 Thread Jeremy Roussak via 4D_Tech
EXECUTE FORMULA should do the trick. For ($i;1;17) $s:="ARRAY REAL(aANA_"+String($i)+";0)" EXECUTE FORMULA($s) End for Jeremy Jeremy Roussak j...@mac.com > On 6 Oct 2017, at 09:57, stardata.info via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi All, > > I need to create 2

Create multi array

2017-10-06 Thread stardata.info via 4D_Tech
Hi All, I need to create 20 arrays that have a similar name. I can do this using the pointers? I try with this code, but in compiled mode not work. For ($I;1;17) $vPoint:=Get pointer("aAna_"+String($I)) ARRAY REAL("aAna_"+String($I);0) End for Have suggestions? Thanks Ferdinando