how can i change the default arrow pointer style to hand when client move the pointer to a particular division?
+4
A:
In WinForm, you can use the Cursors
class. More information here.
But, Cursor = Cursor.Hand;
will do the job.
EDIT
As for ASP .Net, check this link out. SomeNewKid has posted the answer.
Ardman
2010-10-28 08:52:33
thank u.. but what in case of .cs?
NayeemKhan
2010-10-28 08:54:42
Sorry, I don't understand what you are asking. That is in C#.
Ardman
2010-10-28 08:55:42
i am calling a code behind function on mouseover a division. want to change the cursor style to hand on call of that function, its in asp.net
NayeemKhan
2010-10-28 08:57:31
ok.. let me check. will come back soon
NayeemKhan
2010-10-28 09:00:17
thanks.. that link worked
NayeemKhan
2010-10-28 09:08:43
A:
Dear all, i found the answer as for that division we need to set style, there we have option to set the cursor style.
NayeemKhan
2010-10-28 09:10:09