- Code: Select all Expand view
// --- Initialize
oGet := {}
aGet := {}
For i := 1 TO 30
AADD(oGet, Nil)
AADD(aGet, Str(i))
Next
// --- Create Gets:
nR := 0; nC := 0
For i := 1 TO 30
nR, nC GET oGet[i] Var aGet[i]
nR += 1
Next
But this example doesn't work: All the gets show the last value (30) . Anybody could suggest a way of solving this problem?. Thanks
Rafael