Please look that:
rm = new ResourceManager("MyImages", this.GetType().Assembly);
PictureBox.Image = (System.Drawing.Image)rm.GetObject("MyObject");
ResourceWriter rw=new ResourceWriter ("TestDemo.resources");
using(Image image=Image .FromFile ("Bitmap1.bmp"))
{
rw.AddResource ("TangLogo",image );
rw.AddResource ("Title","TTTTTTTTT");
rw.Close ();
}
Assembly objAssembly=Assembly .GetExecutingAssembly();
ResourceManager ms=new ResourceManager
(S"WinTest.TestDemo",objAssembly);
pictureBox1 .Image =(Image)ms.GetObject("TangLogo");
Icon icon = new Icon(this.GetType(), "App.ico");
pictureBox1 .Image =icon.ToBitmap ()
Satan Tang
=====================================================