Hidie mouse in visual basic - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Skype & Technology (/forumdisplay.php?fid=9) +---- Forum: Tech Talk (/forumdisplay.php?fid=17) +----- Thread: Hidie mouse in visual basic (/showthread.php?tid=25536) Hidie mouse in visual basic by Necroman on 05-20-2004 at 02:59 PM
I was making a little app in vb that makes a little guy fly accross the screen RE: Hidie mouse in visual basic by Stigmata on 05-20-2004 at 03:55 PM
hmmmmm get a book mate.... code: RE: Hidie mouse in visual basic by Necroman on 05-20-2004 at 04:18 PM with that, you're still able to see the cursor if it is positioned over the taskbar, and when you click to bring another application to the front ... the mouse becomes visible again RE: Hidie mouse in visual basic by dotNorma on 05-20-2004 at 04:20 PM
code: When testing use the Tab button to find the other button because it would be hard to click it without being able to see the mouse. RE: Hidie mouse in visual basic by Stigmata on 05-20-2004 at 04:20 PM
code: RE: Hidie mouse in visual basic by Mike on 05-20-2004 at 04:30 PM
That will only work for your application. RE: Hidie mouse in visual basic by CookieRevised on 05-20-2004 at 04:43 PM
quote:eh yeah... but he asked for hiding the mousecursor system-wide, not about a code to show your window alwyas on top (although, that could help him for this application also ) To keep your window always on top: code: RE: Hidie mouse in visual basic by Necroman on 05-20-2004 at 04:45 PM
aah, thats how I should have asked the question ... RE: Hidie mouse in visual basic by CookieRevised on 05-20-2004 at 05:31 PM
Yeah, and the solution to that is already given... code:But keep in mind that if you call the ShowCursor function more than once passing False as an argument, then you must call ShowCursor with True an equal number of times, otherwise the cursor will remain invisible!!!! |