Byte array

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • iMaiden

    Byte array

    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?

  • Herfried K. Wagner [MVP]

    #2
    Re: Byte array

    "iMaiden" <googlegroups@t heindianmaiden. comschrieb:
    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?
    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/>

    Comment

    • iMaiden

      #3
      Re: Byte array

      thanks

      Dim snapBuffer(3533 600)() As Byte
      ReDim snapBuffer(i)(3 533600)


      Herfried K. Wagner [MVP] wrote:
      "iMaiden" <googlegroups@t heindianmaiden. comschrieb:
      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?
      >
      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/>

      Comment

      Working...