I'm using VB.net and I'm trying to change the cursor to a custom cursor. In the form load I'm putting this code:
Dim curNew = New Cursor(Application.StartupPath & "\cross.cur")
Me.Cursor = curNew
It makes the cursor to the shape of the cursor file, but the cursor loads all black.
How do I get the colors of the cursor to load?
Dim curNew = New Cursor(Application.StartupPath & "\cross.cur")
Me.Cursor = curNew
It makes the cursor to the shape of the cursor file, but the cursor loads all black.
How do I get the colors of the cursor to load?