Hi,

I need to append one array into another array with the same coloumns.

Copy not think that work.

I need to use 4D V12...

Thanks

/Ferdinando/


Il 04/12/2017 18:13, [email protected] ha scritto:
Message: 10
Date: Mon, 4 Dec 2017 17:29:29 +0100
From: Arnaud de Montard<[email protected]>
To: 4D iNug Technical<[email protected]>
Subject: Re: Assign multidimensional array
Message-ID:<[email protected]>
Content-Type: text/plain; charset=utf-8


Le 4 déc. 2017 à 15:59, Chip Scheide via 4D_Tech<[email protected]>  a écrit 
:

Ferdinando,
not sure if Copy Array will copy multi-dimensional arrays - you could
try.
ARRAY TEXT($zz;2;3)
$zz{0}{0}:="test"
ARRAY TEXT($zzz;0;0)
COPY ARRAY($zz;$zzz)
ASSERT($zzz{0}{0}="test")  //0 index value
ASSERT(Size of array($zzz{2})=3)  //lines
ASSERT(Size of array($zzz)=2)  //columns

it works:-)
-- Arnaud de Montard

**********************************************************************
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:[email protected]
**********************************************************************

Reply via email to