Hello!
Is it possible to create an array of arrays?
I need to store an unknown amount and varying length of byte arrays.
Essentially, I would like something like this:
myArray(23,45,12,25,22,12)
myArray(12,24,25)
myArray(34,56,74,13,95,14,12,65,12)
myArray(12,34,17,73,24)
myArray(12,14,45)
Then, in a round-about kinda way, I'd like to access it like this:
debug.print myArray(1)
2
45
12
25
22
12
debug.print myArray(2)
12
24
25
Please excuse my dumb question - but I'm not that great with VB!
Thanks in advance!
Is it possible to create an array of arrays?
I need to store an unknown amount and varying length of byte arrays.
Essentially, I would like something like this:
myArray(23,45,12,25,22,12)
myArray(12,24,25)
myArray(34,56,74,13,95,14,12,65,12)
myArray(12,34,17,73,24)
myArray(12,14,45)
Then, in a round-about kinda way, I'd like to access it like this:
debug.print myArray(1)
2
45
12
25
22
12
debug.print myArray(2)
12
24
25
Please excuse my dumb question - but I'm not that great with VB!
Thanks in advance!