S
Sean
I have an object that I want to have a PictureBox as a
member of, and I want to be able handle the on click event
for that member PictureBox. How do I do it?
Right now, the PictureBox is declared:
Friend WithEvents f_PictureBox As
System.Windows.Forms.PictureBox
Private Sub PictureBox_Clicked(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
f_PictureBox.Click
But it doesn't except the last f_PictureBox.Click as valid.
Help
member of, and I want to be able handle the on click event
for that member PictureBox. How do I do it?
Right now, the PictureBox is declared:
Friend WithEvents f_PictureBox As
System.Windows.Forms.PictureBox
Private Sub PictureBox_Clicked(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
f_PictureBox.Click
But it doesn't except the last f_PictureBox.Click as valid.
Help