I\'m trying to change the cursor that appears on a standard ListView when the cursor appears over an item. However I am getting a flickering effect as the mouse is changed t
Without having tried it, cursors are normally changed in response to WM_ SETCURSOR, so maybe you are in conflict with the default WM_ SETCURSOR handling of the ListView. I would try to create a new UserControl deriving from ListView and then trap WM_ SETCURSOR in WndProc and see if that helps.