tags:

views:

33

answers:

2

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
thank u.. but what in case of .cs?
NayeemKhan
Sorry, I don't understand what you are asking. That is in C#.
Ardman
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
ok.. let me check. will come back soon
NayeemKhan
thanks.. that link worked
NayeemKhan
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