Each object in the arraylist can be retrieved with
arraylist[i]
You will then need to cast this to the appropriate type - e.g. if you have
stored them as ints with the argb values then you can do
int somevalue = (int)myArrayList[1];
Dim something As Integer
something = CType(myArrayList(1), Integer)
Peter
--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com |
www.opennetcf.org
"Jeroen Ceuppens" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> I made an arraylist; where i put in info about a colormap (256 entries
with
> each 4 values (ARGB))
>
> How do I get the info out of the list?
>
> Can I use arraylist[i] or arraylist[i][j] ?
>
> Thx
> JC
>
>