I know how to check if two PictureBox have same Image and it works:
If PictureBox1.Image Is PictureBox2.Image Then
**What I want it to do**
End If
I tried do it with three PictureBox but not working:
If (PictureBox1.Image Is PictureBox2.Image) And (PictureBox1.Image Is PictureBox3.Image) Then
MessageBox.Show("TEST")
End If
If someone could help me, I would be grateful. Thanks.