Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Bookmark replace by trigger

Hi,

I have several tabs in document and users need them all and make selections.When user leaves a tab, a trigger replaces a certain bookmark and when he comes back to the same tab, a trigger applies the same bookmark. So user can carry on from earlier selections.

This works well in server, but in Access Point OnLeaveSheet trigger doesn't replace the bookmark. Does user have not the rights to replace it, or what can it bee?

Please help!

Niko

1 Reply
chematos
Specialist II
Specialist II

You can try this using macros:

Sub AddBookMark

ActiveDocument.CreateDocBookmark false, "TmpBookmark"

End Sub

Sub ApplyBookMark

ActiveDocument.RecallDocBookmark "TmpBookmark"

End Sub

Sub RemoveBookMark

ActiveDocument.RemoveDocBookmark  "TmpBookmark"

End Sub

Regards,

Jose