Results 1 to 2 of 2

Thread: Anyone know how to Disable Mouse?

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 1999
    Location
    Pgh,Pa,USA
    Posts
    2

    Post

    I've been searching for a programmatic way to temporarily disable the user's mouse, and have obviously not been successful...any ideas?

  2. #2
    Serge's Avatar
    Join Date
    Feb 1999
    Location
    Scottsdale, Arizona, USA
    Posts
    2,744

    Post

    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
  •  



Click Here to Expand Forum to Full Width