I want to know to get windows mouse cursor type(shape) using vb.net. I have not ask within the form. I want to get even the form is minimized. Can you help me
Cursor.Current will give you access to current mouse pointer type. You may check as follows. If Cursor.Current = Cursors.WaitCursor Then ' code goes here ElseIf Cursor.Current = Cursors.Default Then ' code goes here End If
Thank you for your reply, Your code will work within the form only. that means, If you minimized your form means, that wont produce cursor change.