I have created an array of picture boxes and set an AddHandler to the array
eg AddHandler PictureBox(i).Click, AddressOf PictureBox_Click
However, I want to be able to determine which picture box within the array has been called. For example, if it is the first control in the array is clicked it will do one thing, if the second is called another thing, etc.
Any one know any way round this? Thanks
eg AddHandler PictureBox(i).Click, AddressOf PictureBox_Click
However, I want to be able to determine which picture box within the array has been called. For example, if it is the first control in the array is clicked it will do one thing, if the second is called another thing, etc.
Any one know any way round this? Thanks