I am trying to find an example of an If Then statement for the value of a picture box.

My statement does not work. Maybe you can just see what I am doing wrong.

Code:
Private Sub mnuFileConvert_Click()
   If (imgFile.Picture.Value = "") Then
      Exit Sub
   Else
    .........my code goes here
   End If
End Sub