I have an image called "imgUnableToDisplay" held in a resource file called "resImages" which is in the root of my application.
Can someone tell me how to get to it ?
I have tried :
andCode:System.Drawing.Image img = (System.Drawing.Image)Properties.Resources.ResourceManager.GetObject("imgUnableToDisplay");
but no joy.Code:System.Drawing.Image img = (System.Drawing.Image)Properties.Resources.ResourceManager.GetObject("resImages.imgUnableToDisplay");
Thanks In Advance



Reply With Quote