G Guest Feb 9, 2006 #2 Hi Hrvoje, set the image property to null, then call Refresh if needed. Mark Dawson http://www.markdawson.org
Hi Hrvoje, set the image property to null, then call Refresh if needed. Mark Dawson http://www.markdawson.org
D dotnetchic Feb 9, 2006 #3 Set the image to null and repaint. PictureBox pictureBox; pictureBox.Image = null; // assuming the picturebox is embedded in this form this.Invalidate; this.Update
Set the image to null and repaint. PictureBox pictureBox; pictureBox.Image = null; // assuming the picturebox is embedded in this form this.Invalidate; this.Update