I have a movie that plays in my form how to disable the mouse right button.
Printable View
I have a movie that plays in my form how to disable the mouse right button.
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!
Just set the Button to 0. Put the following in the MouseDown event.
Code:If Button = 2 Then Button = 0