Hi There!
I got a viewlist, which has 20 items, which is populated from a string array (of 20 items).
It works nice. But now I need to attach to each one of those viewlist items a byte array as the return object.
Each byte array is 8 bytes long.
I was planning to do something like
Dim lines(20) as string
dim bytesarray(20,8) as byte
'populate these arrays
myviewlist.clear 'prepare my viewlist for showing my lines
for i=0 to 19
miviewlist.AddSingleLine(lines(i),bytesarray(i))
next
This won't fly. Problem seems to be that I cannot use my bytesarray two-dimensional array in that way (something I do in other languages).
Any suggestions or hints ?
Regards,
Enrique.