Trying to draw a treeview, with different icons at each node populated from an Imagelist. I had this working really well in VB6 but cant seem to even load my images into the Imagelist in .Net. Any advice would be greatly appreicated.
B= (Bitmap)o;
a.MB.ShowDialog(B);
IL.Images.Add((Bitmap)o);
for(int i=0; i < IL.Images.Count; i++)
{
a.MB.ShowDialog((Bitmap)IL.Images[i]);
}