02-21-2023, 12:19 AM
Hi
@KernelPanic
I do not know how and why I missed my 2 different answers to your post!
I said thank you to show me why is possible to use a variable in declaration of an array, doing this array Dynamic
so resuming:
@KernelPanic
I do not know how and why I missed my 2 different answers to your post!
I said thank you to show me why is possible to use a variable in declaration of an array, doing this array Dynamic
so resuming:
Code: (Select All)
Dim Min As Integer
Min = 4
Dim MyStaticArray(1 To 4) As Integer '<---STATIC array
Dim MyDynamicArray(1 To Min) As Integer '<---Dynamic array
Rem Thank to Kernelpanic for showing this to me.