Window.MouseCursor

From Xojo Documentation

Property (As MouseCursor )
aWindow.MouseCursor = newMouseCursorValue
or
MouseCursorValue = aWindow.MouseCursor

Supported for all project types and targets.

The cursor to be displayed while the mouse is within the window and the Application class’s MouseCursor property is Nil.

Notes

If the Application class MouseCursor is not Nil, non-Nil MouseCursors belonging to any windows or Controls are ignored. If the window’s MouseCursor property is not Nil, the MouseCursor properties of any Controls are ignored. You can use the cursors in the Cursors module to set the MouseCursor for the window.

Example

This line sets the default cursor to the finger pointer.

Me.MouseCursor = System.Cursors.FingerPointer