I would not do this "as is",
but in theory,
it should be possible to append an array like this:
ARRAY TEXT($a;2)
ARRAY TEXT($b;2)
$a{0}:="a"
$a{1}:="b"
$a{2}:="c"
$b{0}:="A"
$b{1}:="B"
$b{2}:="C"
$a:=1
$b:=1
VARIABLE TO BLOB($a;$ax)
VARIABLE TO BLOB($b;$bx)
CLEAR VARIABLE($a)
CLEAR VARIABLE($b)
$o:=5
$size_a:=BLOB to longint($ax;PC byte ordering;$o)
$o:=9
$select_a:=BLOB to integer($ax;PC byte ordering;$o)
$o:=5
$size_b:=BLOB to longint($bx;PC byte ordering;$o)
$o:=9
$select_b:=BLOB to integer($bx;PC byte ordering;$o)
COPY BLOB($bx;$ax;13;BLOB size($ax);BLOB size($bx)-13)
$o:=5
$size:=$size_a+$size_b+1 //new size
LONGINT TO BLOB($size;$ax;PC byte ordering;$o)
BLOB TO VARIABLE($ax;$a)
CLEAR VARIABLE($ax)
CLEAR VARIABLE($xb)
> 2017/12/05 6:15、Kirk Brooks via 4D_Tech <[email protected]> のメール:
> But it sounds like you need to _append_ the elements.
**********************************************************************
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]
**********************************************************************