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??