PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Rolf Brandt on February 09, 2011, 01:08:24 PM

Title: MousePointer
Post by: Rolf Brandt on February 09, 2011, 01:08:24 PM
How do I change the MousePointer icon when I am over a certain control?

I would like to show a different MousePointer when I am over a label.
Title: Re: MousePointer
Post by: Wilko Verweij on February 09, 2011, 03:19:05 PM
Dear Rolf,
You can use e.g. the MOUSEMOVE event to detect the cursor is over the label. Then use the MousePtr statement to change the shape of the cursor.
Succes,
Wilko
Title: Re: MousePointer
Post by: Rolf Brandt on February 10, 2011, 04:47:37 AM
Thanks Wilko,

I'll give that a try.
Title: Re: MousePointer
Post by: Roger Garstang on February 11, 2011, 02:00:26 PM
Change it in WM_SETCURSOR.
Title: Re: MousePointer
Post by: Rolf Brandt on February 12, 2011, 03:26:29 PM
Thanks, Roger.