How to clean a PictureBox?
Mobile
3
Posts
2
Posters
0
Views
1
Watching
-
Hi all, After a PictureBox has displayed an image, how programmatically to clean it in Compact Framework VB? In other words, I need the same effect as to clean a TextBox I use: TextBox.Text = "" I want PictureBox displays no image. Thanks
modified on Wednesday, October 8, 2008 2:59 PM
-
Hi all, After a PictureBox has displayed an image, how programmatically to clean it in Compact Framework VB? In other words, I need the same effect as to clean a TextBox I use: TextBox.Text = "" I want PictureBox displays no image. Thanks
modified on Wednesday, October 8, 2008 2:59 PM
yourPictureBox.Image = Nothing
-
yourPictureBox.Image = Nothing
Thanks Adam, I received your reply in "real time", just while I was working around... Your line works! Ignazio