|
-
Dec 6th, 1999, 01:01 AM
#1
Thread Starter
New Member
I've been searching for a programmatic way to temporarily disable the user's mouse, and have obviously not been successful...any ideas?
-
Dec 6th, 1999, 01:19 AM
#2
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).]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|