I have a series of PictureBoxes and if the user clicks on one of them, it highlights (changes color). Only one can be highlighted at any given time. I have a button that resets the images to their default but before an image can be highlighted, it has to have the default "normal" applied because that data goes into an array. Afterwords, the first PictureBox needs to be highlighted.
The problem is that PictureBoxes do not have an option to PerformClick(). It seems that I should be able to call thebut what do I enter for "sender" and "e"? or is this even possible?Code:PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click




Reply With Quote