How i can don't show the arrow?

Started by
6 comments, last by Link 21 years, 2 months ago
I have some codes of games but after the reset causing by the block of the debugging (for some errors) it don''t work correctly: when before the windows arrow was hidden now i can show and move by the mouse! Why happen it? how i can correct? Can i force the idden of it?
Advertisement
ou''ll have to call the Win API function called ShowMouse(FALSE) to make the mouse go away. If you want it to reappear the ShowMouse(TRUE). Its as simple as that.



[warning]
Im not sure of the function name...:/ ...I actually forgot. But just check on MSDN
[/warning]

:::Al::: [Triple Buffer V2.0] - Resource leak imminent. Memory status: Fragile
[size=2]aliak.net
it''s ShowCursor(true/false).

i like your writing style.

--helicon56.
Thx, however, why is happen it at the program?
Where i must put ShowMouse(FALSE); ? What is the API function?
Finally i have find where i put it:
wc.hCursor = (HCURSOR)ShowCursor(FALSE);
but i have an error: Enable to create Direct3D Device!
Why happen it?
I make it! but i don''t understand why it is happen!
Is it possible that error or rebot (reset) when the code is debugging (because is blocked) can carve on DirectX Sistem?
I make it! but i don''t understand why it is happen!
Is it possible that error or rebot (reset) when the code is debugging (because is blocked) can carve on DirectX Sistem?

This topic is closed to new replies.

Advertisement