I'm trying to put the following in an array
Dim snapBuffer1(353 3600) As Byte 'raw video data
Dim snapBuffer2(353 3600) As Byte 'raw video data
Dim snapBuffer3(353 3600) As Byte 'raw video data
something like this:
Dim snapBuffer(12)( 3533600) As Byte 'raw video data
is there a way to do what i'm after?
Dim snapBuffer1(353 3600) As Byte 'raw video data
Dim snapBuffer2(353 3600) As Byte 'raw video data
Dim snapBuffer3(353 3600) As Byte 'raw video data
something like this:
Dim snapBuffer(12)( 3533600) As Byte 'raw video data
is there a way to do what i'm after?
Comment