How to Move the Mouse or How to unvisible the Mouse

  • Thread starter Thread starter Benjamin Wagner
  • Start date Start date
B

Benjamin Wagner

I want to unvisible the Mouse, because there is a
touchscreen and i dont want a mousecurser.
 
You might try P/Invoking ShowCursor(). It takes a boolean parameter which
indicates whether to show (true), or hide (false) the cursor. Note that
this really only affects the windows of the thread which calls ShowCursor(),
though. If you pop up another application, it has control over its own
cursor. There's no global cursor-off API that I can think of...

Paul T.
 
-----Original Message-----
You might try P/Invoking ShowCursor(). It takes a boolean parameter which
indicates whether to show (true), or hide (false) the cursor. Note that
this really only affects the windows of the thread which calls ShowCursor(),
though. If you pop up another application, it has control over its own
cursor. There's no global cursor-off API that I can think of...

Paul T.

Thx, but it don´t work. Is it possible that the
(touchscreen mouse driver) override this? The System is an
Windows CE.net on an mipsII.

Benjamin Wagner
 
It's entirely possible that the display driver doesn't even support cursors.
When our devices have no mouse attached, no matter what API calls you make,
you won't get a cursor...

Paul T.

-----Original Message-----
You might try P/Invoking ShowCursor(). It takes a boolean parameter which
indicates whether to show (true), or hide (false) the cursor. Note that
this really only affects the windows of the thread which calls ShowCursor(),
though. If you pop up another application, it has control over its own
cursor. There's no global cursor-off API that I can think of...

Paul T.

Thx, but it don´t work. Is it possible that the
(touchscreen mouse driver) override this? The System is an
Windows CE.net on an mipsII.

Benjamin Wagner
 
Back
Top