i think i understand his question erel.
first, he creates a new array in Class_Globals that has no length,
then he creates a new array in B4XPage_Created with the same name and gives it a length value.
now he changes the array values in position 0,1 and 2.
the question is if it is a new array that is created in B4XPage_Created then how does the code work in B4XPage_Appear??
he should get an error:
java.lang.ArrayIndexOutOfBoundsException: 0
since the length is 0 and you cannot set the items in the array. OR the array that is "redimmed" in B4XPage_Created is just updating the array in Class_Globals and you still have reference to this array? if yes then is that the right behavior?
i would expect that if i redimm an object it is recreated and if it is recreated why can i access it if it was created inside a sub??
btw. is it possible to create an array without a length and then set the length and add items to it in a later phase?
like you can push items to an array in javascript?
i know that list are here a much better solution but just to understand how b4x arrays work.
thanx