I am trying to put a picture in a picturebox, but I keep getting an ArgumentException that says "Value of 'null' is not valid for 'stream'." I don't know what I'm doing wrong.
Stream myStream = myAssembly.GetManifestResourceStream("WindowsFormsApplication2.Resources.clock3.png");
Image img = Image.FromStream(myStream);
pictureBox1.Image = img;