Hello,

i need to write more than 63 Bytes to an Byte[] in a structure.

How to do this job ?

mini example attached


thank you wally

'##########################################################


' Gambas class file

Public Struct myStruct
    src As Byte[]
    dst As Byte[]
End Struct

Public GG As New MyStruct

Public Sub Button1_Click()

GG.src = New Byte[]

GG.src.Resize(200)
GG.src.Fill(&hFF, 0, -1)

Print GG.src.Length
GG.src.Clear
Print GG.src.Length

GG.src = [&Haa, &H25, &H00, &H01, &H0a, &H00, &H00, &H00, &H00, &H0f,
          &H00, &H00, &H00, &H02, &H00, &H0d, &H06, &H00, &H10, &H00,
          &H00, &H00, &H00, &H00, &He0, &H93, &H04, &H00, &Hf4, &H53,
          &H00, &H00, &H00, &H02, &H00, &H0d, &H06, &H00, &H10, &H00,
          &H00, &H00, &H00, &H02, &H00, &H0d, &H06, &H00, &H10, &H00,
          &H00, &H00, &H00, &H00, &He0, &H93, &H04, &H00, &Hf4, &H53,
          &H00, &H00, &H00]              'Max = 63 !!?


Print GG.src.Length      'OK


GG.src = [&Haa, &H25, &H00, &H01, &H0a, &H00, &H00, &H00, &H0f, &Hf0,
          &H00, &H00, &H00, &H02, &H00, &H0d, &H06, &H00, &H10, &H00,
          &H00, &H00, &H00, &H00, &He0, &H93, &H04, &H00, &Hf4, &H53,
          &H00, &H00, &H00, &H00, &He0, &H93, &H04, &H00, &Hf4, &H53,
          &H00, &H00, &H00, &H02, &H00, &H0d, &H06, &H00, &H10, &H00,
          &H00, &H00, &H00, &H02, &H00, &H0d, &H06, &H00, &H10, &H00,
          &H00, &H00, &H00, &H00, &He0, &H93, &H04, &H00, &Hf4, &H53,
          &H00, &H00, &H00]              'Max = 63 !!?

Print GG.src.Length      'Too many arguments !!


End

Attachment: StructArray_gb3_001-0.0.1.tar.gz
Description: application/gzip

------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today.
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to