Skip to main content

Problem:

If you have a PictureBox control on a Form with an Image displayed how can you set the picturebox so that it does not display an image?

Resolution:

This can be achieved by setting the "Image"  property in the PictureBox control to null. Code such as:-

       set PictureBox1::"Image" to null

should achieve this.

Old KB# 3963