me.MouseCursor vs app.MouseCursor during drag

I searched and it seemed you can’t change the cursor during drag…so I thought I’d share.

This won’t work when you drag a file/folder onto a listbox :
Listbox1.dragover

me.MouseCursor= System.Cursors.copy

but this will:

app.MouseCursor= System.Cursors.copy

Yeah I saw that, but this works and without any declares.

app.MouseCursor= System.Cursors.copy

I guess it could be a Xojo bug, that one works and the other doesn’t?

Doesn’t seem to work for Listbox.DragRow.
I haven’t figured out if there’s actually a way to change the cursor manually during the Listbox.DragRow event without using Declares…