B
Brady A. Williams
Something has mysteriously
happened to my resource file and now in InitializeComponent() of my form, it is throwing a MissingManifestResourceException when it attempts to retrieve an ImageListStreamer from the ResourceManager (code snippet below). I opened the .resx file and verified the "imageList.ImageStream" data exists and it does.
ResourceManager resources = new ResourceManager(typeof(MyForm));
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream"));
How can I fix this?
Regards,
Brady A. Williams

ResourceManager resources = new ResourceManager(typeof(MyForm));
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream"));
How can I fix this?
Regards,
Brady A. Williams