Working with word macros

P

Petricia Smith

Example: [REQ68 Functional Requirements] - This is a book mark in our
word document.
A menu item is to be added to the popup menu, only when the right
click is performed on a book mark. So we need to capture the right
click event to check if the cursor is placed on a bookmark.
We are calling the function that adds the menu item to the right click
popup menu in the class module,

Private Sub App_WindowBeforeRightClick(ByVal sel As Selection, Cancel
As Boolean)
Call macro1.function1(sel)
End Sub

But the application event in the class module is not trigerred
anywhere(we have placed even a break point in the function call).
Why is it not trigerred?
Where to call this application event.(App_WindowBeforeRightClick)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top