how to disable right click in vb6? because i put a flash document in my form and i want to be it like a touch screeen....so how?
disable right-click in vb6?
Collapse
X
-
Tags: None
-
UM ...........disa bling right click........If there are no events on right click isn't that the same result.......no thing happens when you right click on the mouse?....if your talking about Standard (ie windows in built) context menus on right click......i can't help you in vb6 though someone esle might be able to.Originally posted by lightyagamihow to disable right click in vb6? because i put a flash document in my form and i want to be it like a touch screeen....so how? -
-
OK look. Select the flash object into VB form, get in the object , select on "MOSE DOWN" in the left uper corner and do this:
Dim A As Key
A = vbRightButton
So you can write what you want for the right click
*VACE*Comment
-
Flash has very few events. There is no event for Mouse.Originally posted by VACEPROGRAMEROK look. Select the flash object into VB form, get in the object , select on "MOSE DOWN" in the left uper corner and do this:
Dim A As Key
A = vbRightButton
So you can write what you want for the right click
*VACE*Comment
-
-
yes it works but only in 1 flash document...how to use that code in multiple flash documents...?Comment
-
Instead of disabling right click.
You can change the settings of flash animation.
I think you have added the control which plays flash animation.
Goto that control's settings and then disable the default menu appears on right click.
Regards
>> ALI <<Comment
Comment