I have some code that generates an image, and apparently that works fine. I can save the image and open it in paint, for example, and it looks correct. However, when I set my picturebox's image property to this image, nothing changes. I don't see the image.
C# Code:
Image temp = MapItem.Image; temp.Save(frmd.Selected + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp); //this works fine, I can load this .bmp file and see the image picMapImage.Image = temp; //this seems to do nothing