D
DamianC
Guest
Im putting the finishing touches to a fullscreen Winforms Application in VB (.net 3.5, VS2008). I need to hide the mouse cursor, so Ive used:
Me.Cursor.hide()
this works exactly as youd expect, until a timer triggered event runs (and no, the timer doesnt call Cursor.Show(), ANY event running seems to trigger this, and I have a lot of timers triggering events to control various aspects of my application).
What I really want to accomplish is to have my application work like in Media Player, where the mouse cursor is hidden until I move the mouse or cancel fullscreen.
Is there any way to hide the cursor until I move the mouse, close my form or exit fullscreen? Ive tried lots of things, but cant find anything that actually works correctly (all due to triggered events running).
Thanks in advance
DamianC
Continue reading...
Me.Cursor.hide()
this works exactly as youd expect, until a timer triggered event runs (and no, the timer doesnt call Cursor.Show(), ANY event running seems to trigger this, and I have a lot of timers triggering events to control various aspects of my application).
What I really want to accomplish is to have my application work like in Media Player, where the mouse cursor is hidden until I move the mouse or cancel fullscreen.
Is there any way to hide the cursor until I move the mouse, close my form or exit fullscreen? Ive tried lots of things, but cant find anything that actually works correctly (all due to triggered events running).
Thanks in advance
DamianC
Continue reading...