Hi all. I have this array
TYPE my_array_type
a as integer
b as integer
c as integer
ENDTYPE
DIM my_array(0,0) as my_array_type
Ok, i would to add the array cells just when i need it so i can use the "ARRAY INSERT AT BOTTOM" command. But this command work on single dimension array or i can use it in my example too?
I need something like that:
ARRAY INSERT AT BOTTOM my_array(0,0)
..but what of the 2 dimension gets the cell add? the first or the second?
Are there some ways to add a cell in the wanted array dimension?
Thanks