Mouseover event with a Label

  • Thread starter Thread starter Anil Khemchandani
  • Start date Start date
A

Anil Khemchandani

Hello,

I am trying to create a mouseover event in .net and show a hand icon on a
label to make it appear like a link. I cannot use a text use a textlink or a
image link for design reasons. Can anyone help me or give me the syntax to
launch this icon from the mouseover event.

Thanks and looking forward to some help real soon.

Anil
 
Anil Khemchandani said:
Hello,

I am trying to create a mouseover event in .net and show a hand icon on a
label to make it appear like a link. I cannot use a text use a textlink or
a
image link for design reasons. Can anyone help me or give me the syntax to
launch this icon from the mouseover event.

Thanks and looking forward to some help real soon.

Anil

You don't need to do that. Simply change the Cursor property of the label
to the cursor you wish to display. You can do that in the form designer.

Hope this helps
LS
 
Anil Khemchandani said:
Hello,

I am trying to create a mouseover event in .net and show a hand icon on a
label to make it appear like a link. I cannot use a text use a textlink or
a
image link for design reasons. Can anyone help me or give me the syntax to
launch this icon from the mouseover event.

Thanks and looking forward to some help real soon.

Anil


Is this a windows forms app or an asp.net app?
 
Cor Ligthert said:
A mouse hover event in an ASP.Net application?

Anil asked about mouse over, not mouse hover.
<label onmouseover="alert('Boo!')">I Am A Label</label>, for example.

Mike
 
Back
Top