-
Cursor style
I'm trying to determine when the system cursor is a hand icon. Why doesn't this work:
If Cursor.Current = Cursors.Hand Then
End If
When the cursor is a hand icon, the handle is 65569, but the handle for Cursors.Hand is 4917027.
This works though:
If Cursor.Current = Cursors.Arrow Then
End If
How can I check if the cursor is a hand??
-
Re: Cursor style
Works perfectly fine for me. Is the hand cursor being shown in your case from another program or is it within your own .NET program that the hand cursor is set?