Change Mouse Pointer in a vb.net windows form

  • Thread starter Thread starter Ashish Shridharan
  • Start date Start date
A

Ashish Shridharan

Hi All,

How do we change the mouse pointer (for example : from a
arrow to a hand pointer) on the click of a button, in a
windows form ??

Thanks in advance

Ashish Shridharan
 
In VB.NET...
Me.Cursor = Cursors.Hand



in C# this.Cursor = Cursors.Hand;

HTH,


Bill
 
Back
Top