> And How do I create the Arrays in the First Place
If you are running compiled you I think will need to type the arrays in a
method someplace so the compiler knows about the arrays. I know that some
variable types don’t need compiler declarations, but I think arrays do.
// Some method maybe a COMPILER_ARRAY method
Array text (array1;0)
Array text (array2;0)
Array text (array3;0)
Array text (array4;0)
// add the arrays you will use here
// Method to assign the arrays
$p:=Get Pointer(“array”+string($1)) // assuming you pass in the array number
such as one
// Then use the pointer -> wherever you would use the array
Array Text($p->;20)
$p->{1}:=“One"
// Or maybe something like
Selection To Array([Table]Field;$p->)
Neil
--
Neil Dennis
4D Developer since 1990
**********************************************************************
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]
**********************************************************************