Hi Everyone,

I building a program that consists of 14 different forms. On each form, I have a List View control. I'm trying to load the ListView with images from the filesystem (relatively large images) but I don't want to re-load the images from the filesystem on each form. I would like to perform a one-time image load into a globally defined imageList (programatically defined) - then on each form, just pull from the global ImageList.
Anyway - for some reason, I cannot assign the programatically defined ImageList to the ListView controls on each form. It is reporting that my ImageList is equal to "nothing" but I know this is not true.

Any thoughts?