I added three images to a file called Resource1.resx. I also added one string just for test purposes. I\'m getting this error on either the GetString or the GetObject(image
Have you remembered to include the default namespace/folder when you reference the resource?
ResourceManager rm = new ResourceManager("DefaultNamespace.Folder.ResourceName");
If you are unsure of the correct name, load the assembly in Reflector and browse down to see what it is.