|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Byte arrayI'm trying to put the following in an array
Dim snapBuffer1(3533600) As Byte 'raw video data Dim snapBuffer2(3533600) As Byte 'raw video data Dim snapBuffer3(3533600) 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? "iMaiden" <googlegro***@theindianmaiden.com> schrieb: Check out the documentation on arrays (and especially jagged arrays).> I'm trying to put the following in an array > > Dim snapBuffer1(3533600) As Byte 'raw video data > Dim snapBuffer2(3533600) As Byte 'raw video data > Dim snapBuffer3(3533600) 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? -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://dotnet.mvps.org/dotnet/faqs/> thanks
Dim snapBuffer(3533600)() As Byte ReDim snapBuffer(i)(3533600) Herfried K. Wagner [MVP] wrote: Show quoteHide quote > "iMaiden" <googlegro***@theindianmaiden.com> schrieb: > > I'm trying to put the following in an array > > > > Dim snapBuffer1(3533600) As Byte 'raw video data > > Dim snapBuffer2(3533600) As Byte 'raw video data > > Dim snapBuffer3(3533600) 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? > > Check out the documentation on arrays (and especially jagged arrays). > > -- > M S Herfried K. Wagner > M V P <URL:http://dotnet.mvps.org/> > V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
What is WebBrowser control called now?
Manipulating controls created by another thread Estimates on money lost because of VB.NET Re: Great Reasons Not To Learn VB.NET - PART 1 The below snippet does not work...anyone know how to reference a procedure? Form1.closing in VB2005??? DateTime Can't maximize Help referencing control backgorund image Great Reasons To Learn VB.NET - PART 1 |
|||||||||||||||||||||||