01-03-2024, 06:57 PM
Have you considered a 2 dimensional array (multidimensional array), with the first dimension being the "number" of the array, and the second being the true array values.
' set x and y to needed values before the dim is executed
x=5 ' variable number
y=100 ' elements
dim UA (x,y) ' here you basically have 5 arrays with up to 100 elements each.
' set x and y to needed values before the dim is executed
x=5 ' variable number
y=100 ' elements
dim UA (x,y) ' here you basically have 5 arrays with up to 100 elements each.