hi guys, i would like to know if anybody know how to declare some thing like this in VB
Code:BYTE buffer[]={0x41,0x58,0x52};
Printable View
hi guys, i would like to know if anybody know how to declare some thing like this in VB
Code:BYTE buffer[]={0x41,0x58,0x52};
That could be a start::)Code:Dim buffer(2) As Byte
yes but {0x41,0x58,0x52};
I'm not of the bit calculations but I'd suppose it would be like
etc.Code:buffer(0) = <first byte>
buffer(1) = <second byte>
what if i have a really long array ? do i have to retype it everytime ?
Try with Array() function.
&H41 etc.