How to hide the mouse pointer on the window screen of GDI, kindly give me some hints.
+2
A:
Xavier Ho
2010-04-23 11:00:30
+2
A:
You can use GetCursorPos to determine the location of the cursor and then if the cursor is above your GDI area you can call ShowCursor(FALSE).
As soon as the cursor leaves your GDI area call ShowCursor(TRUE).
Foxfire
2010-04-23 11:15:31