can i make something like that :
and after can i store each array of byte by store(0).valu = temp
and can i read each array of byte by temp = store(1).valu
objective is to store 30 arrays of byte with length max 120 bytes, but i don't known if memory is reserved at compilation. from first tests done, no error found at compilation, but after i don't find data stored...
thanks for your help
B4X:
Sub Process_Globals
Type pay_st(valu(120) As Byte)
Private store(30) As pay_st
end sub
and after can i store each array of byte by store(0).valu = temp
and can i read each array of byte by temp = store(1).valu
objective is to store 30 arrays of byte with length max 120 bytes, but i don't known if memory is reserved at compilation. from first tests done, no error found at compilation, but after i don't find data stored...
thanks for your help