I'm using VB.NET forms app and I need to check if a PictureBox currently has an image in it. How would I do this?
Thanks
I'm using VB.NET forms app and I need to check if a PictureBox currently has an image in it. How would I do this?
Thanks
If Not pictureBox.Image is Nothing Then
//do stuff here
Else
//do other stuff
End If