Results 1 to 3 of 3

Thread: How to disable the right button on my VB browser

  1. #1

    Thread Starter
    Lively Member Edilson's Avatar
    Join Date
    Aug 2000
    Location
    Orlando
    Posts
    81
    I have a movie that plays in my form how to disable the mouse right button.

  2. #2
    Addicted Member Smie's Avatar
    Join Date
    Jun 1999
    Location
    Columbus, OH
    Posts
    249
    On the forms mousedown control, put this code:

    If Button = 2 then
    'blank if nothing
    else
    'left mouse button control
    end if


    hope this helps!

  3. #3
    Guest
    Just set the Button to 0. Put the following in the MouseDown event.
    Code:
    If Button = 2 Then Button = 0

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