i managed to make it, but i got 1 bug on the cursor, how to make it on top of the finger to be the mouse to click , couse now its under the hand?

code:
Code:
Declare Function LoadCursorFromFile Lib "user32" Alias "LoadCursorFromFileA" (ByVal lpFileName As String) As IntPtr
    Dim g As IntPtr = LoadCursorFromFile("MyCursor.cur")

Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Cursor = New Cursor(g)
    End Sub
I made cursor options:
Build Action: Embedded Resource
Copy to. : Copy always

any ideas how to fix it?