Re: how to capture the right-click event in MSWord through a word macr by kjaysree
kjaysree
Sun Jan 16 22:31:31 CST 2005
I've called the macro function that is to be trigerred during the
right-click, inside WindowBeforeRightClick, application event.
Private Sub App_WindowBeforeRightClick(ByVal Sel As Selection, Cancel
As
Boolean)
macro1.fn1(Sel)
End Sub
The application event(WindowBeforeRightClick) is not at all executed.