PDA

Click to See Complete Forum and Search --> : Anyone know how to Disable Mouse?


ALB
Dec 6th, 1999, 12:01 AM
I've been searching for a programmatic way to temporarily disable the user's mouse, and have obviously not been successful...any ideas?

Serge
Dec 6th, 1999, 12:19 AM
How about if you hide the mouse cursor:


Declare Function ShowCursor Lib "User" (ByVal bShow As Integer) As Integer

'-------Put this on any event
Call ShowCursor(False) 'True to show it again




------------------

Serge

Software Developer
Serge_Dymkov@vertexinc.com
Access8484@aol.com
ICQ#: 51055819 (http://www.icq.com/51055819)



[This message has been edited by Serge (edited 12-06-1999).]