I created the Dll
of resources with I PNG in C # when I compile to read in PictureBox
of Visual Studio I get news of NUll
or missing System.Resources.MissingManifestResourceException' occurred in mscorlib.dll
Assemblyasm=Assembly.LoadFrom(System.Environment.CurrentDirectory+@"\PNGRES.dll");
Stream strm = asm.GetManifestResourceStream("resources.PNG"+(string)asm.GetManifestResourceNames()[102]);
Bitmap b = (Bitmap)Image.FromStream(strm);
pictureBox1.Image = b;