tags:

views:

278

answers:

1

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

+4  A: 
If Not pictureBox.Image is Nothing Then
    //do stuff here
Else
    //do other stuff
End If
Adam Robinson