Hello,
If you have added the file as an embedded resource project can do the following:
Dim myImage as new Bitmap(Assembly.GetExecutingAssembly().
GetManifestResourceStream("PictureBoxControl.myimage.png"))
and keep this 'myImage' vairable as public so you don't need to reload it.
To make it simple I would just add a picture box to your form and when you want to see the png image just set the picture box Visible to True.
Enjoy,
Luc Pettett