Say I've got 10 single dimention arrays.
Is there an (I should be asking what is the) easy LiveCode way
to combile the 10 single dimention arrays into a single Basic Table Field.
I've already seen this: 7810-How-do-I-display-an-array-in-a-table-field-
http://lessons.runrev.com/spaces/lesson ... ble-field-
And
http://homepages.rpi.edu/~simonk/technical.html
Materials for Stata and Runtime Revolution
something like this is what I'd be doing in any other language than livecode.
Code: Select all
Repeat with i from 1 to upperbounds(ary1)
set the tbdata[i] of group table to ary1(i) & cr & ary2(i) & cr & ary3(i) & cr & ary(4) & cr & ary(5) ... etc
end repeat
For now I'm looking for an easy livecode way to combine arrays.
hmmmm. Is there a Repeast for each in a single dimention array?
How do I know how many occurances/items are in a single dimention array?