hi,
i have wrote the following code....
private void button_MouseEnter(object sender, EventArgs e)
{
if ( button.Enabled== false)
label1.Text = "Please Select the area to scan";
else
label1.Text = "It will scan the specified area";
}
and used mouse enter handler.The problem i am getting is it give me the value of else case when the button is enabled.if the button is disables it didn't show me if part...
Please help me to solve that problem
Thanks in advance.