I'm using a click event on a picture box, that can only be enabled after some actions.
Private Sub PictureBox_Click_1(sender As Object, e As EventArgs) Handles PictureBox.Click
But i want to disable that click without using picturebox.enabled=false
cause it changes the original colour to grey.
How can i do that ? Thank you!