I've been searching for a programmatic way to temporarily disable the user's mouse, and have obviously not been successful...any ideas?
Printable View
I've been searching for a programmatic way to temporarily disable the user's mouse, and have obviously not been successful...any ideas?
How about if you hide the mouse cursor:
------------------Code: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
[email protected]
[email protected]
ICQ#: 51055819
[This message has been edited by Serge (edited 12-06-1999).]