Hi
Code:
Public Class Form1
Dim circle = Image.FromFile("d:\circle.bmp")
--
--
Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click
Label3.Image = circle
Label3.Enabled = False
--
--
In my program i have loaded an image to a Label3 on click over it.....
then i have disabled the Label....so no further clicks on Label3 should be executed....
but disabling the Label3 is making my actual image
grayish.......
which i dont want, to happen....
i just want no further clicks on that Label3 should be executed but without disabling it(so that image wont become grayish)...how it can be done....
Thanks & Regards
Sweety